#ifndef UNIVERSITY_H #define UNIVERSITY_H #include using namespace std; class University { public: University(void); ~University(); void GoOnBreak(int, string) const; void StartSemester(void) const; void EndSemester(void) const; void PrintProfs(void) const; protected: // nothing here for now - just wait! :) private: const int MAX_PROF; const int MAX_DEPT; int NumberOfStudents; int CurrentSemester; string *Departments; string *Professors; // string **Departments; // string **Professors; }; #endif