#ifndef DATE_H #define DATE_H #include using namespace std; class date { private: int year; int month; int day; public: date(int init_day, int init_month, int init_year); date(const date& another); //"copy" constructor ~date(); void print() const; }; #endif