// File: Date.h. C++ source code for Date class specification. #ifndef DATE_H #define DATE_H class Date{ public: void assignDate(int mo, int dy, int yr); // assign to specified date void displayShort(); // print date in MM/DD/YY format void displayVerbose(); // print date in Month Day, Year // as in October 31, 1998 void nextDay(); // increment a date by one day private: int month; // 1-12 int day; // 1-31 int year; // such as 1922 }; #endif