// File: gradbook.h. Header file for GradeBook class #ifndef GRADEBOOK_H #define GRADEBOOK_H #include #include class GradeBook { public: GradeBook(); // initializes number of tests and possible points float GetAverage(int student); // prompts for student grades // and returns average private: int NumGrades; // number of grades for each student int MaxTotalPoints; // total number of possible points void ReadNumGrades(void); // read number of tests void GetMaxTotalPoints(void); // get possible points int ReadAddGrades(void); // get points int ReadGrade(int); // get a grade }; #endif