-
Notifications
You must be signed in to change notification settings - Fork 0
/
ResearchDev.h
33 lines (26 loc) · 1004 Bytes
/
ResearchDev.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
#ifndef RESEARCHDEV_H
#define RESEARCHDEV_H
#include "Employee.h"
class ResearchDev : public Employee {
private:
std::string position;
std::string finished_research;
std::string current_research;
std::string expertise;
public:
//Initialisation
ResearchDev();
ResearchDev(float salary_hourly, float hours_weekly, std::string date_joined, int age, int phone, std::string name, std::string address,
std::string position, std::string finished_research, std::string current_research, std::string expertise);
//Getters
std::string get_position();
std::string get_finished();
std::string get_research();
std::string get_expertise();
//Setters
void set_position(std::string position);
void set_finished(std::string finished_research);
void set_research(std::string current_research);
void set_expertise(std::string expertise);
};
#endif //RESEARCHDEV_H