#ifndef DATE_H #define DATE_H //This is the header file for class date. class date { int year; int month; //in the range 1 to 12 inclusive int day; //in the range 1 to 31 inclusive static const int length[13]; //static data member (needs the 13) public: date(int month, int day, int year); //constructor void print() const; //const member function void next(int n); //non-const member function void next(); }; #endif