summaryrefslogtreecommitdiff
path: root/phpcpp.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-08-25 17:40:03 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-08-25 17:40:03 +0200
commite14055694478d70e58b5fc653b08a9a514bbc455 (patch)
treeab47d723699a7fe86f47f68c182ab695bf9b3bab /phpcpp.h
parente838e180f5bbcf19e7235f30311645e942ff92d2 (diff)
{more work in progress: the function that was defined with c++ now gets calls, but it does not yet call the actual implementation
Diffstat (limited to 'phpcpp.h')
-rw-r--r--phpcpp.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/phpcpp.h b/phpcpp.h
index 104818d..6d85589 100644
--- a/phpcpp.h
+++ b/phpcpp.h
@@ -8,9 +8,20 @@
*/
/**
+ * Other C and C++ libraries that PhpCpp depends on
+ */
+#include <string>
+#include <initializer_list>
+#include <vector>
+
+/**
* Include all headers files that are related to this library
*/
+#include <phpcpp/type.h>
#include <phpcpp/request.h>
+#include <phpcpp/argument.h>
+#include <phpcpp/variable.h>
+#include <phpcpp/function.h>
#include <phpcpp/extension.h>
/**