summaryrefslogtreecommitdiff
path: root/include/modifiers.h
blob: 98140bbd8c9eb24ed9f7f99bc07a24fd619ea529 (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 PHPCPP_EXPORT const int Static;
extern PHPCPP_EXPORT const int Abstract;
extern PHPCPP_EXPORT const int Final;
extern PHPCPP_EXPORT const int Public;
extern PHPCPP_EXPORT const int Protected;
extern PHPCPP_EXPORT const int Private;
extern PHPCPP_EXPORT const int Const;

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

/**
 *  End namespace
 */
}