/* * intern.h * * Created on: 16.05.2013 * Author: trifon */ #ifndef INTERN_H_ #define INTERN_H_ #include "student.h" #include "employee.h" class Intern : public Student, public Employee { int period; public: Intern(); Intern(int,double,char const*,double,int); Intern(Intern const&); Intern& operator=(Intern const&); ~Intern(); int getPeriod() const; void setPeriod(int); void print() const; }; #endif /* INTERN_H_ */