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, 0 insertions, 29 deletions
diff --git a/include/classmodifier.h b/include/classmodifier.h
deleted file mode 100644
index 2cebb65..0000000
--- a/include/classmodifier.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * 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
- */
-}