-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef4660b
commit a585ba5
Showing
5 changed files
with
1,551 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// pch.cpp: 与预编译标头对应的源文件;编译成功所必需的 | ||
|
||
#include "pch.h" | ||
|
||
// 一般情况下,忽略此文件,但如果你使用的是预编译标头,请保留它。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// 入门提示: | ||
// 1. 使用解决方案资源管理器窗口添加/管理文件 | ||
// 2. 使用团队资源管理器窗口连接到源代码管理 | ||
// 3. 使用输出窗口查看生成输出和其他消息 | ||
// 4. 使用错误列表窗口查看错误 | ||
// 5. 转到“项目”>“添加新项”以创建新的代码文件,或转到“项目”>“添加现有项”以将现有代码文件添加到项目 | ||
// 6. 将来,若要再次打开此项目,请转到“文件”>“打开”>“项目”并选择 .sln 文件 | ||
|
||
#ifndef PCH_H | ||
#define PCH_H | ||
|
||
// TODO: 添加要在此处预编译的标头 | ||
|
||
#endif //PCH_H |
Oops, something went wrong.