Listing 4 Definitions for a variation of the Date class shown in Listing 5

// date2.h

struct Date
{
   int month;
   int day;
   int year;
   
   // Constructors
   Date();
   Date(int, int, int);
   
   Date * interval (const Date&);
};

/* End of File */