#ifndef DOCUMENTSTORE_H #define DOCUMENTSTORE_H #include #include #include "Document.h" class DocumentStore { public: DocumentStore(); void CreateMemo(); void CreateEmail(); void CreateReport(); void Display(int docID); void ListDocuments(); void Search(std::string queryStr); void ClearDocuments(); // Don't forget to add other constructors and methods below (not here) // private: // Used to help generate unique sequential ID #'s for documents int m_nextID; // Vector used to keep track of our active documents std::vector m_active; // Add other data members below (not here) static std::string InputText(const char *prompt); static std::string InputMultilineText(const char *prompt); // YOU SHOULD ONLY ADD YOUR CUSTOMIZATIONS BELOW THIS POINT // (Yes, you can have multiple public and private sections) public: private: // AND ABOVE HERE }; #endif