#ifndef DOG_H #define DOG_H #include using std::string; class CDog { public: CDog(); void Bark(); private: string m_Name; }; #endif