summaryrefslogtreecommitdiff
path: root/include/modifiers.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-02-28 15:17:53 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-02-28 15:17:53 +0100
commit7cf89f18d766368dd4a14d35e4e144107ad7be36 (patch)
tree0bd4e449cbfddc928c25aaa1abac8b44c028c8e2 /include/modifiers.h
parent6072701319a3bf085bbc354c3e3dae9b7d021be0 (diff)
implemented properties
Diffstat (limited to 'include/modifiers.h')
-rw-r--r--include/modifiers.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/include/modifiers.h b/include/modifiers.h
new file mode 100644
index 0000000..a838341
--- /dev/null
+++ b/include/modifiers.h
@@ -0,0 +1,29 @@
+/**
+ * Modifiers.h
+ *
+ * In this file an enumeration type is with the possible
+ * member modifiers
+ *
+ * @author Martijn Otto
+ * @copyright 2014 Copernica BV
+ */
+
+/**
+ * Set up namespace
+ */
+namespace Php {
+
+/**
+ * The modifiers are constants
+ */
+extern const int Abstract;
+extern const int Final;
+extern const int Public;
+extern const int Protected;
+extern const int Private;
+extern const int Const;
+
+/**
+ * End namespace
+ */
+}