#include "Appointment.h" int main(void) { Appointment myappt1(2, 24, 2005, 6, 00, true, "My Birthday"); Appointment myappt2(11, 25, 2004, 6, 00, false, "Thanksgiving"); if(myappt1 < myappt2) { cout << "Birthday before Thanksgiving" << endl; } else { cout << "Thanksgiving before Birthday" << endl; } return EXIT_SUCCESS; }