/* student.h * * This is the header file for the Student data type. * */ #ifndef STUDENT_H #define STUDENT_H #include using namespace std; // This is the student class // It represents a student entry from the input file. class Student { private: long int number; // the student's id string name; // the student's name public: // This constructor sets up the Student object. Student(); // This is the destructor for the class. virtual ~Student(); // Student number accessors long int getNumber() const; void setNumber(long int); // Student name accessors string getName() const; void setName(string); }; #endif