// date.h // this is the header file for the Date class #ifndef DATE_H_ #define DATE_H_ class Date { private: int month, day, year; public: void set(int,int,int); // m,d,y void print(); void read(); }; #endif