summaryrefslogtreecommitdiff
path: root/include/classmodifier.h
blob: 2cebb65d8732ccc7c51d7ceb3b06e9f7921011e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
 */
}