implementation.h
来自「经典vc教程的例子程序」· C头文件 代码 · 共 13 行
H
13 行
// Fig. 7.10: implementation.h
// Header file for class Implementation
class Implementation {
public:
Implementation( int v ) { value = v; }
void setValue( int v ) { value = v; }
int getValue() const { return value; }
private:
int value;
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?