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