#ifndef DATE_H #define DATE_H #include class Date { private: std::string date; public: Date(); Date(std::string); std::string getDate(); }; #endif