coach.h

来自「曼彻斯特联队球队系统 本程序是一个以数据处理为基础的类数据库的查找软件。用户」· C头文件 代码 · 共 36 行

H
36
字号
#ifndef coach_h
#define coach_h

class coach:public employee
{

public:
	coach(const int,
		const double,
		const char*,
		int c_g=0,
		int c_o=0,
		int m_m=0,
		int t_k=0,
		int p=0,
		int d=0
		);
	~coach(){} 
	virtual void print() const;
	const int getcoaching_goalkeeper() const;
	const int getcoaching_outfield() const;
	const int getman_managerment() const;
	const int gettactical_knowledge() const;
	const int getphysiotherapy() const;
	const int getdetermination() const;
	int coaching_goalkeeper;
	int coaching_outfield;
	int man_managerment;
	int tactical_knowledge;
	int physiotherapy;
	int determination;

};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?