// File: Governor.h // Definition of Governor class #ifndef GOVERNOR #define GOVERNOR #include #include #include "PublicEmployee.h" #include "Politician.h" using namespace std; class Governor : public PublicEmployee, public Politician { public: Governor(const string &first,const string &last,const string &social="", const string place="",int birthMonth=0,int birthDay=0,int birthYear=0, int term=0,int startMonth=0,int startDay=0,int startYear=0, GovernmentLevel entity=0,float amount=0.0); void setState(const string &stateName); virtual void print(ostream &Dest) const; private: string state; friend ostream& operator<<(ostream&,const Governor &); }; #endif