summaryrefslogtreecommitdiff
path: root/documentation/classes-and-objects.html
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-06 10:59:54 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-06 10:59:54 +0100
commit5feeff6e7263d78d482b4c262ace851f370957d6 (patch)
tree6b98aa47741eee89d2a14356707993ce5c7bfa19 /documentation/classes-and-objects.html
parent1a5573246367d457fe4fd961b7faf3b308a88d0c (diff)
changes to documentation, added support for const methods so that they can also be exported
Diffstat (limited to 'documentation/classes-and-objects.html')
-rw-r--r--documentation/classes-and-objects.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/classes-and-objects.html b/documentation/classes-and-objects.html
index c45ca09..0fed826 100644
--- a/documentation/classes-and-objects.html
+++ b/documentation/classes-and-objects.html
@@ -23,8 +23,8 @@ private:
int _value = 0;
public:
- MyClass() {}
- virtual ~MyClass() {}
+ Counter() {}
+ virtual ~Counter() {}
Php::Value increment() { return ++_value; }
Php::Value decrement() { return --_value; }
@@ -116,8 +116,8 @@ private:
int _value = 0;
public:
- MyClass() {}
- virtual ~MyClass() {}
+ Counter() {}
+ virtual ~Counter() {}
Php::Value increment(Php::Parameters &params)
{