Question: this is c++, please, help me to solve this and provide correct answer. thank you in advance. Exercise P5.2. Implement a class Pemployee that is




this is c++, please, help me to solve this and provide correct answer.
thank you in advance.
Exercise P5.2. Implement a class Pemployee that is just like the Employee class except that it stores an object of type Person as developed in Exercise P5.1. class PEmployee public: PEmployee (); PEmployee (string employee_name, double initial_salary); void set_salary (double new_salary); double get_salary() const; string get_name () const; private: Person person_data; double salary; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
