// File: Senator.h // Definition of Senator class #ifndef SENATOR #define SENATOR #include #include #include "PublicEmployee.h" #include "Politician.h" class Senator : public PublicEmployee, public Politician { public: Senator(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 &place); virtual void print(ostream &Dest) const; private: string state; friend ostream& operator<<(ostream &Dest,const Senator &S); }; #endif