-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDesign.cpp
17 lines (14 loc) · 1 KB
/
Design.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "Design.h"
#include "Employee.h"
//Initialisation
Design::Design() : Employee(), position("none"), design_finished("none"), design_current("none") {}
Design::Design(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 design_finished, std::string design_current)
: Employee(salary_hourly, hours_weekly, date_joined, age, phone, name, address), position(position), design_finished(design_finished), design_current(design_current) {}
//Getters
std::string Design::get_position(){return position;};
std::string Design::get_finished(){return design_finished;};
std::string Design::get_design_current(){return design_current;};
//Setters
void Design::set_position(std::string position){this->position = position;};
void Design::set_finished(std::string design_finished){this->design_finished = design_finished;};
void Design::set_design_current(std::string design_current){this->design_current = design_current;};