summaryrefslogtreecommitdiff
path: root/tests/simple/simple.cpp
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-10-22 13:39:21 -0700
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-10-22 13:39:21 -0700
commitf96fc6c53bc8bd8888aeb291441f61a65b439413 (patch)
tree030815351f20cfa6dfb36c816c5c0d737516e784 /tests/simple/simple.cpp
parentf16847ab29d474e2b20d7f8c9f3a0f229b54c850 (diff)
Initial setup for dealing with object properties
Diffstat (limited to 'tests/simple/simple.cpp')
-rw-r--r--tests/simple/simple.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/simple/simple.cpp b/tests/simple/simple.cpp
index 69cf9ce..7942a3c 100644
--- a/tests/simple/simple.cpp
+++ b/tests/simple/simple.cpp
@@ -143,7 +143,8 @@ public:
cout << "myMethod GETS CALLED!!!!" << endl;
cout << this << endl;
cout << _x << endl;
-
+// cout << "A: " << _properties["a"] << endl;
+// cout << "Z: " << _properties["z"] << endl;
}
};
@@ -153,8 +154,6 @@ extern "C"
// export the "get_module" function that will be called by the Zend engine
PHPCPP_EXPORT void *get_module()
{
- cout << "call get_module()" << endl;
-
// create extension
static Php::Extension extension("simple","1.0");