/* Directory Entry for Student */ #ifndef _STUDENT_H #define _STUDENT_H #include "Entry.h" using namespace std; class Student : public Entry { protected: // students have two special fields int year; // anticipated graduation year string POBox; /* Public methods for a typical Entry within a directory data will inlude a person's first name, last name and email address */ public: /* constructors */ Student (); Student (const string & first,const string & last, const string & eAddress, const int& yr, const string & POBox) ; /* method override to allow full viewing of a Faculty object */ string toString () const; // convert to string } ; #endif