-
Notifications
You must be signed in to change notification settings - Fork 0
/
pch.h
138 lines (119 loc) · 2.82 KB
/
pch.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#ifndef PCH_H
#define PCH_H
#include "windows.h"
//standard borland headers --------------------------
#include <vcl.h>
#include <Data.DBXJSON.hpp>
#include <System.hpp>
#include <Vcl.Grids.hpp>
#include <IdHTTP.hpp>
#include <System.Classes.hpp>
#include <jpeg.hpp>
#include <System.DateUtils.hpp>
#include <VCLTee.Chart.hpp>
#include <VCLTee.Series.hpp>
#include <System.Math.hpp>
#include <Vcl.Buttons.hpp>
#include <Vcl.Menus.hpp>
#include <Vcl.Dialogs.hpp>
#include <Vcl.Menus.hpp>
#include <Vcl.AppEvnts.hpp>
/*
//commend because one of the header file initialize the data in the header
#include <VclTee.TeeGDIPlus.hpp>
#include <VCLTee.TeEngine.hpp>
#include <VCLTee.TeeProcs.hpp>
*/
/*
#include <System.SysUtils.hpp>
//#include <Xml.XMLDoc.hpp>
//#include <Xml.XMLIntf.hpp>
*/
//standard headers ----------------------------------
#include <assert.h>
#include <tchar.h>
#include <stdio.h>
#include <sys/stat.h>
#include <stdarg.h>
#include <float.h>
#include <math.h>
//#include <gl/gl.h>
#include <TlHelp32.h>
#include <cstdio>
#include <float.h>
//#include <WinDef.h>
//standard STL headers ------------------------------
#include <string>
#include <vector>
#include <map>
#include <deque>
#include <list>
#include <set>
#include <exception>
#include <fstream>
#include <sstream>
#include <algorithm>
#include <iterator>
#include <valarray>
//global exceptions ---------------------------------
#include "exceptions.h"
//external sys headers ------------------------------
#include "crc.h"
#include "sysSystem.h"
#include "sysBaseTypes.h"
#include "sysException.h"
#include "sysFile.h"
#include "sysStr.h"
#include "sysJSON.h"
#include "sysTime.h"
#include "sysKey.h"
#include "sysMath.h"
#include "sysStr.h"
#include "sysObserver.h"
#include "sysObserverable.h"
#include "sysPatterns.h"
#include "sysProcess.h"
#include "sysReg.h"
#include "sysThread.h"
#include "sysLogger.h"
#include "sysControlState.h"
#include "sysApp.h"
#include "sysOO.h"
#include "sysVCL.h"
//datasource object
#include "datasource_object.h"
//datasource
#include "datasource.h"
#include "datasource_vector.h"
#include "datasource_list.h"
#include "datasource_string_grid.h"
//string grid
#include "string_grid_datasource.h"
//external types
#include "briz_analog_mode.h"
#include "data_type.h"
#include "data_file_formats.h"
#include "event_type.h"
#include "alarm_data_type.h"
#include "unit.h"
#include "power.h"
#include "sensor_data.h"
#include "sensor_event_data.h"
#include "chart_mouse_strategy.h"
#include "observerable_types.h"
#include "trackable_type.h"
//external records
#include "record.h"
#include "user.h"
#include "collection_point.h"
#include "device.h"
#include "sensor.h"
#include "sensor_bit.h"
#include "device_tree_group.h"
#include "records/mnemoshema.h"
#include "img.h"
//global variables
#include "global.h"
//borland library
#include "db_module.h"
#endif