-
Notifications
You must be signed in to change notification settings - Fork 0
/
HumanResources.h
35 lines (29 loc) · 895 Bytes
/
HumanResources.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef HUMANRESOURCES_H
#define HUMANRESOURCES_H
#include "Employee.h"
class HumanResources : public Employee {
private:
std::string position;
int no_trained;
int no_hired;
int no_fired;
int no_retired;
public:
//Initialisation
HumanResources();
HumanResources(float salary_hourly, float hours_weekly,
std::string date_joined, int age, int phone, std::string name, std::string address, std::string position);
//Getters
std::string get_position();
int get_trained();
int get_hired();
int get_fired();
int get_retired();
//Setters
void set_position(std::string position);
void set_trained(int no_trained);
void set_hired(int no_hired);
void set_fired(int no_fired);
void set_retired(int no_retired);
};
#endif