#ifndef STUDENT_H #define STUDENT_H #include #include "Course.h" using namespace std; class Student { private: string name; string ID; Course course; static int numOfStu; public: Student(); Student(string a, string b, Course c); void setName(string v); void setID(string v); void setCourse(Course v); string getName() const; string getID() const; Course getCourse() const; static int getNumOfStu(); void printStudent(); }; #endif