我的eclipse C++头文件模板

来源:互联网 发布:windows禁止驱动加载 编辑:程序博客网 时间:2024/05/16 01:26
/* 
 * filename : ${file_name}
 * author   : ${user}
 * date     : ${date}
 * brief    : 
 */


#ifndef ${include_guard_symbol}
#define ${include_guard_symbol}


${includes}


${namespace_begin}


${declarations}


${namespace_end}
#endif /* ${include_guard_symbol} */