#ifndef DOCUMENT_H #define DOCUMENT_H #include class Document { public: Document(); int GetType(); // Don't forget to add other constructors and methods below (not here) private: int m_type; // Add other data members below (not here) // YOU SHOULD ONLY ADD YOUR CUSTOMIZATIONS BELOW THIS POINT // (Yes, you can have multiple public and private sections) public: private: // AND ABOVE HERE }; #endif