//--------------------------------------------------------- // Proj1.C CMSC 341 Spring 2004 // // Driver program for project 1, CMSC 341, Spring 2004 // // // This file is to be use as-is; without changes. //------------------------------------------------------------ #include #include #include "PatronRecord.H" #include "Proj1Aux.H" using namespace std; int main (int argc, char *argv[]) { ifstream commands; // Parse the command line. // Open the command file. GetCmdLine (argc, argv, commands); // Create the patron and process commands. PatronRecord patron; ProcessCommands(patron, commands); if (commands.is_open()) commands.close(); return 0; }