//THe Class Hold all the important stuff creates two arrays of a classes #ifndef Contain_H #define Contain_H #include "Everything.h" #include "Student.h" #include "Item.h" class Container { private: Student Students[SIZE]; Item Items[SIZE]; int usage; int usage2; public: Container(); //////////////////////////////////////////////////////////////// // It's a construtor> // // Parameters: // // // Pre: There's got to be a class // // Post: Every element will be given a default value // // Returns: Nada // // Called by: Nada // Calls: Nada // void AddStudent(); //////////////////////////////////////////////////////////////// AddStudent // Reads in the student file // // Parameters: // None // // Pre: there's got to be a student file // // Post: the array will have the students added // // Returns: Void // // Called by: Nada // Calls: Nada // void AddItem(); //////////////////////////////////////////////////////////////// AddItems // Adds in the Items // // Parameters: // None // // Pre: Items file included // // Post: Items will be added to array // Returns: Nada // // Called by: NOne // Calls: Nada // void PrintStudents(); //////////////////////////////////////////////////////////////// // Prints out all students // // Parameters: // None // // Pre: Array needs to have students // // Post: Output file will have students outputed // // Returns: Void // // Called by: None // Calls: None // void PrintItems(); //////////////////////////////////////////////////////////////// // Prints Items // // Parameters: // NOne // // Pre: Items in the array // // Post: Outfile will be filed with items // // Returns: Describe what value the function returns, if any. // // Called by: Nada // Calls: nada // void Print(string&); //////////////////////////////////////////////////////////////// Print // // Adds a student passed to it // // Parameters: // eachone take in a asspect of the class e-mail Name and phone number // // Pre: Has to be called // Post: A new City // // Returns: nada // // Called by: Nutin // Calls: Nutin // void AddItem2(string&,string&,string&,string&,int&,int&,string&); //////////////////////////////////////////////////////////////// AddItem // Additems passes to it // // Parameters: // All the variables for the item // // Pre: e-mail address excists // // Post: A new Item // Returns: nothign // // Called by: Noting // Calls: Nothing // void Quit(); //////////////////////////////////////////////////////////////// Quits // Closes Filestreams //NOne void PrintStudents2(int&); //////////////////////////////////////////////////////////////// PrintStudents2 // Prints out a student with a given e-mail address // // Parameters: //