// MAIN.CPP - Main program, Doctor Scheduling // Presented in Chapter 5 as a case study. // This version was created 11/23/97, to use the standard C++ library. #include "doctors.h" int main() { const unsigned NumDoctors = 5; vector doctorArray( NumDoctors ); cout << "Doctors Office Scheduling Program\n\n"; Scheduler officeSchedule( doctorArray ); officeSchedule.ScheduleAllAppointments(); officeSchedule.PrintAllAppointments( "appts.txt" ); return 0; }