#ifndef ORGANIZER_H #define ORGANIZER_H #include #include #include"Student.h" #include"Item.h" ;using namespace std; class Organizer { private: Student people[100]; Item items[100]; int itemPos; int studentPos; public: bool addStudent(string,string,string,string,string,string,string,string,string); bool addItem(string,string,string,string,string,string); void printStudents(ofstream&); void printItems(ofstream&); bool printEmail(string,ofstream&); bool deleteStudent(string); int findStud(string); Organizer(); } #endif