#ifndef _SCHOOL_H #define _SCHOOL_H #include // class for school simulation // written: 3/3/98 // member function explanation: // // Start: takes two integer parameters- // number of announcements and assignment number // the chose number of random announcements are made // the class is told what assignment number to work on // // Questions: takes one parameter which is the number of questions // that will be asked during class. Random questions // are asked by random people. // // Finish: takes one parameter which is a string containing the // day that the assignment is due. It will then finish // class by reporting this date. class School { public: School(); // constructor void Start(int, int); // work on parameter 1 assignments and make parameter 2 announcments void Questions(int); //will ask parameter questions from random people void Finish(apstring); //will say that the assignment is due on the parameter date private: apstring announce_list[10]; //holds a list of announcements only 0 to 4 are used apstring rand_question[10]; //holds a list of questions only 0 to 4 are used apstring rand_person[10]; //holds a list of people only 0 to are used }; #endif // _SCHOOL_H defined