// File: President.h // Definition of President class #ifndef PRESIDENT #define PRESIDENT #include #include #include "PublicEmployee.h" #include "Politician.h" using namespace std; class President : public PublicEmployee, public Politician { public: President(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 country; friend ostream& operator<<(ostream&,const President &P); }; #endif