From ffdaa0590d33ea89d116f6c56df2474cc0675ec9 Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Wed, 25 Sep 2013 14:59:58 -0700 Subject: {auto} PHP objects can now be implemented in C++. Constructors and destructors get called at the appropriate time, but not yet any of the other methods --- tests/simple/simple.cpp | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) (limited to 'tests/simple/simple.cpp') diff --git a/tests/simple/simple.cpp b/tests/simple/simple.cpp index 39e615a..e8558a0 100644 --- a/tests/simple/simple.cpp +++ b/tests/simple/simple.cpp @@ -51,26 +51,30 @@ private: public: MyCustomClass() { + _x = 3; + cout << "MyCustomClass::MyCustomClass" << endl; } - virtual void __construct() + virtual ~MyCustomClass() { + cout << "MyCustomClass::~MyCustomClass" << endl; + } + + virtual void __construct() + { + cout << "MyCustomClass::__construct" << endl; } virtual void __destruct() { - - + cout << "MyCustomClass::__destruct" << endl; } void myMethod(Php::Parameters ¶ms) { - - - } - + } }; // symbols are exported according to the "C" language @@ -84,12 +88,12 @@ extern "C" // define the functionsnm extension.add("my_plus", my_plus, { - Php::ByVal("a", Php::stringType), - Php::ByVal("b", Php::arrayType), - Php::ByVal("c", "MyClass"), - Php::ByRef("d", Php::stringType) - }); - + Php::ByVal("a", Php::stringType), + Php::ByVal("b", Php::arrayType), + Php::ByVal("c", "MyClass"), + Php::ByRef("d", Php::stringType) + }); + // define classes extension.add("my_class", Php::Class()); -- cgit v1.2.3