/* * Student.h * * Created on: May 25, 2009 * Author: mac */ #ifndef STUDENT_H_ #define STUDENT_H_ class Student : public Person { public: Student(); Student(const char *s) : Person(s) {} virtual ~Student() {} }; #endif /* STUDENT_H_ */