Skip to content

Commit 4de09ac

Browse files
committed
Rename pch to LibraryIncludes
1 parent c9e8e1a commit 4de09ac

File tree

5 files changed

+35
-21
lines changed

5 files changed

+35
-21
lines changed

GUILibrary/LibraryIncludes.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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.

GUILibrary/LibraryIncludes.h

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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

GUILibrary/framework.h

Lines changed: 0 additions & 3 deletions
This file was deleted.

GUILibrary/pch.cpp

Lines changed: 0 additions & 5 deletions
This file was deleted.

GUILibrary/pch.h

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)