summaryrefslogtreecommitdiff
path: root/zend/module.cpp
diff options
context:
space:
mode:
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
+ */
+}
+