//******************ORGANIZER CLASS DECLARATION****************** #ifndef ORGANIZER #define ORGANIZER #include #include #include #include #include #include #include #include "student.h" #include "item.h" using namespace std; const int MAX = 100; class organizer { private: student students[MAX]; item items[MAX]; int studentCount; int itemCount; public: organizer(); //default constrctor //add student function bool addStudent (string newName, string newNumber, string newEmail, string newAddOne, string newAddTwo, string newCity, string newState, string newZip, string newInfo); //add item function bool addItem (string newItem, string newType, string newAuthor, string newOwner, string newPrice, string newAva); //print functions void printEmail (string email, ofstream& out); void printStudents (ofstream& out); void printItems (ofstream& out); //delete the member in both student/item arrays bool deleteInfo (string email); }; #endif