/* Directory Entry for Faculty */ #ifndef _FACULTY_H #define _FACULTY_H #include "Entry.h" using namespace std; class Faculty : public Entry { protected: // faculty have four special fields string office; int extension; string dept; int firstYear; // first year teaching at SSU /* Public methods for a typical Entry within a directory data will inlude a person's first name, last name and email address */ public: /* constructors */ Faculty (); Faculty (const string & first, const string &last, const string & addr, const string & room, const int & ext, const string & department, const int & yr) ; /* method override to allow full viewing of a Faculty object */ string toString () const; // convert to string } ; #endif