// Section.h // This is the class declaration for a class section in assignment #4. It // basically keeps an array of students and acts like a pass between for // interacting with those students. #ifndef SECTION #define SECTION #include "Student.h" class Section { public: const static int MAX_STUDENTS=1000; // This reads in the student names. It assumes that should be done // when the Section object is created. It also does an insertion // sort as it reads the values. Section(); int getNumStudents(); void addAssn(); void addQuiz(); void addTest(); void changeParticip(); void display(); void printStudent(); private: int searchForName(string first,string last); Student student[MAX_STUDENTS]; int numStudents; }; #endif