#ifndef PERSONAL_INFO_H #define PERSONAL_INFO_H #include #include "Job_info.h" using namespace std; //class definitions class Personal_info { char gender; string haircolor; int age; Job_info job; public: // mutators (or setter member functions) void setGender(char); void setHaircolor(string); void setAge(int); void setJobtitle(string); void setJobsalary(double); // accessors (or getter member functions) char getGender(); string getHaircolor(); int getAge(); string getJobtitle(); double getJobsalary(); }; #endif