#ifndef CONTESTANT_H #define CONTESTANT_H #include #include "Name.h" #include "Personal_info.h" using namespace std; //class definitions class Contestant{ Name name; Personal_info personal; public: // public member functions prototypes // mutators (or setter member functions) void setLastname(string); void setFirstname(string); void setGender(char); void setHaircolor(string); void setAge(int); void setJobtitle(string); void setJobsalary(double); // accessors (or getter member functions) string getLastname(); string getFirstname(); char getGender(); string getHaircolor(); int getAge(); string getJobtitle(); double getJobsalary(); bool compareAge(int); }; #endif