// File: GovernmentLevel.h // Class to implement enum type #ifndef G_LEVEL #define G_LEVEL #include using namespace std; enum publicEntity {city,county,state,federal}; class GovernmentLevel { public: GovernmentLevel(int=0); void setGovernmentLevel(int); char *getGovernmentLevel(); protected: publicEntity level; }; ostream &operator<<(ostream &,GovernmentLevel); #endif