summaryrefslogtreecommitdiff
path: root/Examples/ReturnObject/master.h
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/ReturnObject/master.h')
-rw-r--r--Examples/ReturnObject/master.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/Examples/ReturnObject/master.h b/Examples/ReturnObject/master.h
new file mode 100644
index 0000000..b4f9ceb
--- /dev/null
+++ b/Examples/ReturnObject/master.h
@@ -0,0 +1,65 @@
+/**
+ * Master.h
+ *
+ * Class that is exported to PHP space
+ *
+ * @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
+ * @copyright 2015 Copernica BV
+ */
+
+/**
+ * Include guard
+ */
+#pragma once
+
+/**
+ * Dependencies
+ */
+#include "child.h"
+
+/**
+ * Class definition
+ */
+class Master : public Php::Base
+{
+private:
+ /**
+ * One child
+ * @var Php::Value
+ */
+ Php::Value _value;
+
+public:
+ /**
+ * Constructor
+ */
+ Master()
+ {
+ // create a child instance
+ _value = Php::Object("Child", new Child());
+ }
+
+ /**
+ * Destructor
+ */
+ virtual ~Master() {}
+
+ /**
+ * Retrieve the child
+ * @return Php::Value
+ */
+ Php::Value child() const
+ {
+ return _value;
+ }
+
+ /**
+ * Cast to a string
+ * @return const char *
+ */
+ const char *__toString() const
+ {
+ return "this is the master";
+ }
+};
+