#ifndef STUDENT_H #define STUDENT_H #include #include "Date.h" using namespace std; class Student { public: Student(string n, Date b, int s); void setName(string); void setDate(Date); void setScore(int); string getName(); Date getDate(); int getScore(); void print(); private: string name; Date birthDay; int score; }; #endif