#include #include "StudentT.h" using namespace std; StudentT::StudentT(std::string n, int a, float g): PersonT(n,a), gpa(g) { cout << "In the studentT constructor." << endl; return; } float StudentT::GPA(void) const { return gpa; } void StudentT::Print(void) const { PersonT::Print(); cout << "This person is a student " << endl; cout << "\tGPA: " << gpa << endl; return; }