/* * 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(char const*, char const*, int,double,char const*,double,int); Intern(Intern const&); Intern& operator=(Intern const&); ~Intern(); int getPeriod() const; void setPeriod(int); void print() const; friend ostream& operator<<(ostream&, Intern const&); char const* getPosition() const; void setPosition(char const*); }; #endif /* INTERN_H_ */