#ifndef DATE_H //if this is the first time this header file is being #included #define DATE_H //Make sure this header file will never be included again. class date { int year; int month; int day; public: date(int m, int d, int y); void print() const; }; #endif