Computer Science A - 1/19/00 clndr - Calander Project Directions: Complete a project that will work upon data dealing with a calender date. cldner.h file: #ifndef _CLNDR_H #define _CLNDR_H #include class clndr { public: clndr(); //constructor clndr(int m, int d, int y); //constructor clndr(const clndr& otherDate); //copy bool Equal(clndr otherDate); //operator == bool Before(clndr otherDate); //operator < int getMonth(); //obtain month data int setMonth(int m); sets month field int getDay(); //obtain day field int setDay(int d); //set day field int getYear(); //obtain year field int setYear(int y); //set year field private: int month, day, year; //hold calendar date }; //free function ostream& operator<<(ostream& , const cldnr& ); istream& operator>>(istream& , clndr& ); bool operator == (const clndr& , const clndr& ); bool operator < (const clndr& , const clndr& ); #endif