File tree Expand file tree Collapse file tree 5 files changed +35
-21
lines changed Expand file tree Collapse file tree 5 files changed +35
-21
lines changed Original file line number Diff line number Diff line change
1
+ // LibraryIncludes.cpp: source file corresponding to the pre-compiled header
2
+
3
+ #include " LibraryIncludes.h"
4
+
5
+ // When you are using pre-compiled headers, this source file is necessary for compilation to succeed.
Original file line number Diff line number Diff line change
1
+ // LibraryIncludes.h: This is a precompiled header file.
2
+ // Files listed below are compiled only once, improving build performance for future builds.
3
+ // This also affects IntelliSense performance, including code completion and many code browsing features.
4
+ // However, files listed here are ALL re-compiled if any one of them is updated between builds.
5
+ // Do not add files here that you will be updating frequently as this negates the performance advantage.
6
+
7
+ #ifndef _GUILIBINCLUDES_
8
+ #define _GUILIBINCLUDES_
9
+
10
+ #include < cstdlib>
11
+ #include < cstdarg>
12
+ #include < cstddef>
13
+ #include < cctype>
14
+ #include < string>
15
+ #include < cstring>
16
+ #include < vector>
17
+ #include < list>
18
+ #include < set>
19
+ #include < map>
20
+ #include < unordered_map>
21
+ #include < deque>
22
+ #include < iostream>
23
+ #include < fstream>
24
+ #include < istream>
25
+ #include < algorithm>
26
+ #include < cmath>
27
+ #include < cassert>
28
+ #include < limits>
29
+
30
+ #endif
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments