employee.h

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

H
21
字号
#ifndef employee_h
#define employee_h

class employee
{

public:
	employee(const int,const double,const char*);
	virtual ~employee();
	const char*getname() const;
	const int getage() const;
	const double getsalary() const;
	virtual void print() const;
	int age;
	char *name;
	double salary;

};

#endif

⌨️ 快捷键说明

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