#ifndef DOCUMENT_H #define DOCUMENT_H #include class Document { public: Document(); Document(int type, int aID, std::string author, std::string textBody); int GetType(); int GetID(); std::string GetAuthor(); std::string GetBody(); private: int m_type; int m_ID; std::string m_author; std::string m_textBody; }; #endif