/* CS471B Assignment 2: University Instructor: Wade Holst Submitted by: Dan Fraser Student number: 001219229 File Name: Student.h File description: Student definition */ #ifndef _STUDENT_H_ #define _STUDENT_H_ #include "Person.h" class Professor; class Student : public Person { public: ~Student() { cout << "Student: destructor" << endl;}; Student(string name, int grade) { setName() = name; _grade = grade; } int getTotalStudents() const; int getTopMark() const; int getSalary() const; private: int _grade; }; #endif