boardgame.h
来自「这是国外的resip协议栈」· C头文件 代码 · 共 19 行
H
19 行
#ifndef __BOARDGAME_H__#define __BOARDGAME_H__/** Example class to show hierarchy testing. * * Shamelessly ripped and adapted from * <a href="http://c2.com/cgi/wiki?ClassHierarchyTestingInCppUnit"> * ClassHierarchyTestingInCppUnit</a> * */class BoardGame { public: /// expected to return true virtual bool reset(); virtual ~BoardGame();};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?