data structure lab 1

profileahmeddxn7
DateType.h

#ifndef DATETYPE_H #define DATETYPE_H class DateType { public: void Initialize(int, int, int); // Initializes month, day, and year. int GetMonth() const; // Returns month. int GetDay() const; // Returns day. int GetYear() const; // Returns year. int compareTo(DateType d); //Used to compare one DateType object to another int lilian() const; //Use to find the Lilian Day Number of this date. private: int month; int day; int year; }; #endif