/* Contestant Class Specification */ #ifndef CONTESTANT_H #define CONTESTANT_H #include #include "Name.h" #include "Personal_info.h" using namespace std; //Contestant class declaration class Contestant{ Name name; Personal_info personal; public: // public member functions prototypes // mutators (or setter member functions) void setName(string lastname, string firstname); void setPersonal_info(char gender, string haircolor, int age, Job_info job); // accessors (or getter member functions) Name getName() const; Personal_info getPersonal_info() const; bool compareAge(int) const; }; #endif