-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheetah_class.h
87 lines (67 loc) · 1.57 KB
/
cheetah_class.h
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
typedef int BOOL;
#ifndef TRUE
# define TRUE 1
#endif
#ifndef FALSE
# define FALSE 0
#endif
#ifndef DIRECTORY_SEPARATOR
#define DIRECTORY_SEPARATOR Z_STRVAL_P(zend_get_constant_str("DIRECTORY_SEPARATOR", 19))
#endif
#ifndef Cheetah_Kernel_Exception_H
#include "src/kernel/exception.h"
#endif
#ifndef Cheetah_Kernel_Invalid_Param_Exception_H
#include "src/kernel/invalid_param_exception.h"
#endif
#ifndef Cheetah_H
#include "src/cheetah.h"
#endif
#ifndef Cheetah_Kernel_Object_H
#include "src/kernel/object.h"
#endif
#ifndef Cheetah_Kernel_Component_H
#include "src/kernel/component.h"
#endif
#ifndef Cheetah_Di_Container_H
#include "src/di/container.h"
#endif
#ifndef Cheetah_Di_Service_Locator_H
#include "src/di/service_locator.h"
#endif
#ifndef Cheetah_Kernel_Module_H
#include "src/kernel/module.h"
#endif
#ifndef Cheetah_Kernel_Application_H
#include "src/kernel/application.h"
#endif
#ifndef Cheetah_Kernel_Controller_H
#include "src/kernel/controller.h"
#endif
#ifndef Cheetah_Kernel_View_H
#include "src/kernel/view.h"
#endif
#ifndef Cheetah_Kernel_Request_H
#include "src/kernel/request.h"
#endif
#ifndef Cheetah_Kernel_Response_H
#include "src/kernel/response.h"
#endif
#ifndef Cheetah_LOG_LOGGER_H
#include "src/log/logger.h"
#endif
#ifndef Cheetah_Web_Application_H
#include "src/web/application.h"
#endif
#ifndef Cheetah_Web_Controller_H
#include "src/web/controller.h"
#endif
#ifndef Cheetah_Web_View_H
#include "src/web/view.h"
#endif
#ifndef Cheetah_Web_Request_H
#include "src/web/request.h"
#endif
#ifndef Cheetah_Web_Response_H
#include "src/web/response.h"
#endif