Question: Hello !! i need this ASAP c++ In this assignment, you will extend the linked_stores program we worked on in class to do the following:
Hello !! i need this ASAP c++
In this assignment, you will extend the linked_stores program we worked on in class to do the following: 1. Create an employee class (save as employee.h) as shown below
class employee{
private:
string employee_name;
int employee_grade;
double employee_salary;
public:
employee(){};
employee(string, int, double);
void set_employee_name(string);
void set_employee_grade(int);
void set_employee_salary(double);
string get_employee_name();
int get_employee_grade();
double get_employee_salary();
void print_employee_info();
};
2. Create an employee_impl.cpp file to implement all the functions defined in the employee.h file above.
3. Extend the store class to include a variable of type employee. Make the required updates to the linked_stores_impl file to ensure that your program can accept and print out both customer and employee information for each store in your linked list of stores.
this is the required files on replit:
https://repl.it/join/gbdleljg-aramomran
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
