#ifndef GRAD_STUDENT #define GRAD_STUDENT #include #include #include "StudentT.h" class GradStudentT : public StudentT { public: GradStudentT(std::string n, int a, float g, std::initializer_list y); virtual void Print(void) const override; virtual const std::vector & Years(void) const ; private: std::vector degreeDates; }; #endif