ch11cceo.h
来自「此例子是学习C++的好东西」· C头文件 代码 · 共 21 行
H
21 行
//Program 11-5 CCEO CCEO class with CEmployee and CBoss
//File: Ch11CCEO.h
#ifndef _CCEO_H
#define _CCEO_H
#include "Ch11CBoss.h"
class CCEO: public CBoss
{
protected:
int stock_options;
public:
void HowManySharesDoIGet();
void WriteShares();
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?