/*! @file ******************************************************************************** <PRE> 模块名 : 代码风格示例模块 文件名 : sample.cpp 相关文件 : sample.h, sample.inl 文件实现功能 : 演示正确的代码风格 作者 : 白杨 版本 : 1.0 -------------------------------------------------------------------------------- 备注 : - -------------------------------------------------------------------------------- 修改记录 : 日 期 版本 修改人 修改内容 2004/07/22 1.0 白杨 创建 </PRE> ********************************************************************************
* 版权所有(c) 2004, 白杨, 保留所有权利
*******************************************************************************/
#include <sample.h> // 引用相关的头文件
#include <vector> // 引用仅用于实现的头文件
// ############################################################################# // ############################################################## 本地数据和函数
static int sg_nInternal = 1;
static void InternalFunc(void) { // ... }
// ############################################################## 本地数据和函数 // #############################################################################
// ############################################################################# // ############################################################## 外部数据和函数
extern int g_nCode = 0; // 数据定义
extern void MyFunction(IN int nArg) // 函数实现体 { // ... }
// ############################################################## 外部数据和函数 // ############################################################################# |