summaryrefslogtreecommitdiff
path: root/include/parameters.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/parameters.h')
-rw-r--r--include/parameters.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/include/parameters.h b/include/parameters.h
new file mode 100644
index 0000000..138d973
--- /dev/null
+++ b/include/parameters.h
@@ -0,0 +1,38 @@
+/**
+ * Parameters.h
+ *
+ * Wrapper around parameters that are passed to a
+
+ * @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
+ * @copyright 2013 Copernica BV
+ */
+
+/**
+ * Namespace
+ */
+namespace Php {
+
+/**
+ * Class definition
+ */
+class Parameters : public std::vector<Value>
+{
+public:
+ /**
+ * Constructor
+ * @param argc Number of arguments
+ * @param tsrm_ls
+ */
+ Parameters(int argc);// TSRMLS_DC);
+
+ /**
+ * Destructor
+ */
+ virtual ~Parameters() {}
+};
+
+/**
+ * End of namespace
+ */
+}
+