summaryrefslogtreecommitdiff
path: root/zend/module.cpp
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-04-13 08:54:55 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-04-13 08:54:55 +0200
commit6dcadfb26de2ce9117f58986d543c521143df1c2 (patch)
tree92dd8efd6de0a4d9d837908caa4232ccd59bff80 /zend/module.cpp
parent6328204053b26585cc0a590815f912fb8b153f41 (diff)
parentfaa7df504380295296e3349e9360732d750554c3 (diff)
Merge branch 'master' of https://github.com/CopernicaMarketingSoftware/PHP-CPP
Diffstat (limited to 'zend/module.cpp')
-rw-r--r--zend/module.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/zend/module.cpp b/zend/module.cpp
new file mode 100644
index 0000000..46d03d8
--- /dev/null
+++ b/zend/module.cpp
@@ -0,0 +1,30 @@
+/**
+ * Module.cpp
+ *
+ * Module implementation file
+ *
+ * @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
+ * @copyright 2015 Copernica BV
+ */
+
+/**
+ * Dependencies
+ */
+#include "includes.h"
+
+/**
+ * Set up namespace
+ */
+namespace Php {
+
+/**
+ * The persistent handles
+ * @var Module::Persistent
+ */
+Module::Persistent Module::_persistent;
+
+/**
+ * End of namespace
+ */
+}
+