// On my honor: // // - I have not discussed the C++ language code in my program with // anyone other than my instructor or the teaching assistants // assigned to this course. // // - I have not used C++ language code obtained from another student, // or any other unauthorized source, either modified or unmodified. // // - If any C++ language code or documentation used in my program // was obtained from another source, such as a text book or course // notes, that has been clearly noted with a proper citation in // the comments of my program. // // - I have not designed this program in such a way as to defeat or // interfere with the normal operation of the Curator System. // // Kyle Loder 9043-22823 // // Project II for CS 1704 Spring 2004 // // Programmer: Kyle Loder // OS: Windows XP Professional // System: Pentium IV 2.6 GHz, 512 MB Memory // Compiler: Visual Studio .NET 2003 // Last modified: February 23rd, 2004 // // Purpose // This program stores a list of students and the items they own, and will also read a list commands to // perform on the information. Commands include adding and deleting students, adding items, and printing // all students and items. All commands and results are logged to a file. // #include #include "mediaLibrary.h" int main () { ifstream Students ("students.data"); ifstream Items ("items.data"); ifstream Commands ("commands.data"); ofstream Log ("output.data"); mediaLibrary instance; instance.readStudents (Students); instance.readItems (Items); instance.readCommands (Commands, Log); return 0; }