// main.cpp // ---------------------------------------------------------------------- // incomplete; see comments marked that w/ *** // // CSE 143 // Homework 3 // http://www.cs.washington.edu/education/courses/143/00su/homework/ // 02 Jul 2000; Ken Yasuhara #include #include "lbooklst.h" #include "lpatrlst.h" #include "library.h" const int MAX_FILENAME_LENGTH = 80; int main(void) { // // read book data from file // // input name of book catalogue data file; // construct new LibraryBookList from this file // *** your code here // print number of book records read from file, i.e. number of book // records now stored in LibraryBookList instance; if no book // records were read, program ends here w/ error return value // *** your code here // // read patron data from file // // input name of patron data file; // construct new LibraryPatronList from this file // *** your code here // print number of patron records read from file, i.e. number of // patron records now stored in LibraryPatronList instance; if no // patron records were read, program ends here w/ error return value // *** your code here // // read and process borrow transactions from file, // indicating overdue fines where applicable // // input name of transaction log data file // *** your code here // call processTransactionsFile to process the data in this file // *** your code here } // end main