#ifndef MANAGER_H #define MANAGER_H #include #include "item.h" #include "student.h" using namespace std; class Manager { public: Manager(); void newStudent(string what, string info, int spot); void addStudent(string what, string info, int &spot); void newItem(string what, string info, int spot); void addItem(string what, string info, int &spot); void printAllStudent(ofstream &outdata); void printAllItem(ofstream &outdata); void printPerson(ofstream &outdata, string em); bool studExist(int spot); bool itemExist(int spot); bool delStud(string info); void resetItem(int spot); void resetStud(int spot); private: Student peps[100]; Item stuff[100]; }; #endif