/* Personal_info Class Specification */ #ifndef PERSONAL_INFO_H #define PERSONAL_INFO_H #include #include "Job_info.h" using namespace std; //Personal_info class declarations 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 setJob_info(Job_info p_job); // accessors (or getter member functions) char getGender() const; string getHaircolor() const; int getAge() const; Job_info getJob_info() const; }; #endif