#ifndef REPORT_H #define REPORT_H #include #include "Document.h" #include "BadResponseException.h" #define DOC_TYPE_REPORT 3 class Report : public Document { public: Report(int aID, std::string author, std::string title, std::string textBody); std::string GetTitle(); void DisplayHeader(); void DisplayBody(); bool Search(std::string searchString); Report *CreateResponse(std::string author, std::string textBody, int nextID); private: std::string m_title; }; #endif