/* * Professor.h * * Created on: May 25, 2009 * Author: mac */ #ifndef PROFESSOR_H_ #define PROFESSOR_H_ #include "Person.h" class Professor: public Person { public: Professor(); Professor(const char *s) : Person(s) {} virtual ~Professor() {} }; template <> struct teach_traits { typedef __no_struct oktoteach; }; #endif /* PROFESSOR_H_ */