summaryrefslogtreecommitdiff
path: root/include/classmodifier.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-02-28 10:37:08 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-02-28 10:37:08 +0100
commit6072701319a3bf085bbc354c3e3dae9b7d021be0 (patch)
tree7f81b5206df3a3c9333235e0415a5223fdd4fcb1 /include/classmodifier.h
parent71055ebdea1e8eec30747a04f36e0c10e750bff5 (diff)
class modifiers have been removed, special classes AbstractClass and FinalClass have been added
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
- */
-}