第一课作业。
This commit is contained in:
13
OOP/01/Optional01/employee.h
Normal file
13
OOP/01/Optional01/employee.h
Normal file
@@ -0,0 +1,13 @@
|
||||
class Employee {
|
||||
private:
|
||||
int individualEmpNo;
|
||||
int grade;
|
||||
int accumPay;
|
||||
|
||||
public:
|
||||
void getInfo();
|
||||
void init(int, int, int);
|
||||
void setEmpNo(int);
|
||||
void setGrade(int);
|
||||
void setAccumPay(int);
|
||||
};
|
||||
Reference in New Issue
Block a user