#ifndef student_h #define student_h #include "Course.h" #include #include #include #include using namespace std; class Student { private: char name[30]; char ID[30]; Course course; static int numOfStu; public: Student(); ~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() const; }; #endif