/* * Tutor.h * * Created on: May 25, 2009 * Author: mac */ #ifndef TUTOR_H_ #define TUTOR_H_ #include "Person.h" class Tutor: public Person { public: Tutor(); virtual ~Tutor(); }; #endif /* TUTOR_H_ */