17 lines
470 B
C++
17 lines
470 B
C++
/**
|
|
* @file stdafx.cpp
|
|
* @brief 预编译头源文件,只包含 stdafx.h 以生成共享编译信息。
|
|
*/
|
|
|
|
#include "stdafx.h"
|
|
|
|
/**
|
|
* @file stdafx.cpp
|
|
* @brief 预编译头源文件,用于让构建系统生成 stdafx.h 对应的预编译结果。
|
|
*
|
|
* 本文件不包含业务逻辑;保留它是为了兼容 Visual Studio 模板和现有构建结构。
|
|
*/
|
|
|
|
// TODO: 在 STDAFX.H 中
|
|
// 引用任何所需的附加头文件,而不是在此文件中引用
|