SOURCE FILE: ex0505.cpp


//
// Example 5.5.  Default constructor
// Pre:  none
// Post: The date object January 1, 1900, has been constructed.
//

date::date(void)
{
   month = 1;
   day   = 1;
   year  = 1900;
}