employeescar.h
来自「这是一个简单的 用于标准汽车店的统计管理程序 有多个子程序构成」· C头文件 代码 · 共 25 行
H
25 行
/*
Name: CHAI, Wennan
StudentID: 780621
Program: EmployeesCar.h
Description:
*/
#ifndef EMPLOYEESCAR_H
#define EMPLOYEESCAR_H
#include <string>
#include "TCar.h"
using namespace std;
class EmployeesCar : public TCar
{
public:
EmployeesCar(string brand, TDate date, TStatus status, int id, TCarType type);
int GetPrice();
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?