#ifndef ARKANSAN_H #define ARKANSAN_H class CArkansan { public: CArkansan(const bool BornAboveI40 = true); static void SetGovernor(const char* NewGovernor); static const char* Governor(); void SetName(const char* NewName); const char* Name(); static void MemberFunctionWithStaticVariable(); //... accessor functions for other members private: char m_Name[30]; const bool BORN_ABOVE_I40; int m_Age; short m_Teeth; short m_IQ; long m_CarsOnBlocks; static char m_StateBird[30]; static char m_StateTree[30]; static char m_Govenor[30]; }; #endif