From dd96ebd1b4e995baac8217daaa76ee20f7a4f615 Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Tue, 7 May 2019 09:58:09 -0500 Subject: e --- ee1301/wk7/hw7_directory/HouseDB.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'ee1301/wk7/hw7_directory/HouseDB.cpp') diff --git a/ee1301/wk7/hw7_directory/HouseDB.cpp b/ee1301/wk7/hw7_directory/HouseDB.cpp index 6981161..a0aeebc 100644 --- a/ee1301/wk7/hw7_directory/HouseDB.cpp +++ b/ee1301/wk7/hw7_directory/HouseDB.cpp @@ -19,17 +19,17 @@ public: }; -void ProcHeader(ifstream &file); +void ProcHeader(ifstream &file); houseData* ReadRecord(ifstream &file); void DelRecord(houseData *record); void printAllHousesByZip(houseData* head); int main(int argc, char* argv[]) { - // This line must be removed in your final + // This line must be removed in your final // program (see HINT 1). houseData* initHouseData[10]; - + ifstream fin; if(argc > 1) { fin.open(argv[1]); // Small file to test with @@ -62,14 +62,14 @@ int main(int argc, char* argv[]) { printAllHousesByZip(head); - //This loop will also have to change in your + //This loop will also have to change in your // final program (see HINT 1). - for(int a = 0; aprintShort(); current = current->nextZip; } -} \ No newline at end of file +} -- cgit v1.2.3