summaryrefslogtreecommitdiff
path: root/include/modifiers.h
blob: e52bd146544ab2b1c75931434640c08a0358da79 (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
30
31
32
33
34
35
36
/**
 *  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 Static;
extern const int Abstract;
extern const int Final;
extern const int Public;
extern const int Protected;
extern const int Private;
extern const int Const;

/**
 *  Modifiers that are supported for methods and properties
 */
extern const int MethodModifiers;
extern const int PropertyModifiers;

/**
 *  End namespace
 */
}