#ifndef DATEH #define DATEH #include using namespace std; enum month_type { january = 1, february, march, april, may, june, july, august, september, october, november, december }; class date { int year; int month; //january to december inclusive int day; //1 to date_length[month] inclusive public: date(int initial_month, int initial_day, int initial_year); void next(int count = 1); //Go count days forward. void print() const {cout << month << "/" << day << "/" << year;} }; #endif