summaryrefslogtreecommitdiff
path: root/include/classmodifier.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/classmodifier.h')
-rw-r--r--include/classmodifier.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/include/classmodifier.h b/include/classmodifier.h
new file mode 100644
index 0000000..2cebb65
--- /dev/null
+++ b/include/classmodifier.h
@@ -0,0 +1,29 @@
+/**
+ * ClassModifier.h
+ *
+ * In this file an enumeration type is defined with
+ * the possible class modifiers.
+ *
+ * @author Martijn Otto
+ * @copyright 2014 Copernica BV
+ */
+
+/**
+ * Set up namespace
+ */
+namespace Php {
+
+/**
+ * Supported class modifiers
+ */
+typedef enum _ClassModifier {
+ regular = 0x00,
+ abstract = 0x20,
+ final = 0x40,
+ interface = 0x80
+} ClassModifier;
+
+/**
+ * End of namespace
+ */
+}