#ifndef STUDENT_T #define STUDENT_T #include "PersonT.h" class StudentT : public PersonT { public: StudentT(std::string n, int a, float g); virtual float GPA(void) const ; virtual void Print(void)const override; private: float gpa; }; #endif