summaryrefslogtreecommitdiff
path: root/tests/simple/simple.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simple/simple.cpp')
-rw-r--r--tests/simple/simple.cpp31
1 files changed, 29 insertions, 2 deletions
diff --git a/tests/simple/simple.cpp b/tests/simple/simple.cpp
index fbfcbf8..34a12ce 100644
--- a/tests/simple/simple.cpp
+++ b/tests/simple/simple.cpp
@@ -15,6 +15,29 @@
using namespace std;
/**
+ * Override the request class
+ */
+class SimpleRequest : public PhpCpp::Request
+{
+public:
+ SimpleRequest(PhpCpp::Extension *extension) : PhpCpp::Request(extension)
+ {
+ }
+
+ virtual bool initialize()
+ {
+ cout << "Request::initialize" << endl;
+ return true;
+ }
+
+ virtual bool finalize()
+ {
+ cout << "Request::finalize" << endl;
+ return true;
+ }
+};
+
+/**
* Override the extension class
*/
class SimpleExtension : public PhpCpp::Extension
@@ -29,16 +52,20 @@ public:
virtual bool initialize()
{
- cout << "initialize" << endl;
+ cout << "Extension::initialize" << endl;
return true;
}
virtual bool finalize()
{
- cout << "finalize" << endl;
+ cout << "Extension::finalize" << endl;
return true;
}
+ virtual PhpCpp::Request *request()
+ {
+ return new SimpleRequest(this);
+ }
};
// create the object for the PHP extension