00001 #ifndef _STUDIERENDERDOZENT_HPP_ 00002 #define _STUDIERENDERDOZENT_HPP_ 00003 00004 #include "dozent.hpp" 00005 #include "student.hpp" 00006 00007 class StudierenderDozent : public Dozent, public Student { 00008 private: 00009 00010 public: 00011 StudierenderDozent(std::string vorname, std::string nachname, std::string kuerzel, int matnr); 00012 virtual ~StudierenderDozent(); 00013 virtual std::string toString() const; 00014 virtual void work(); 00015 }; 00016 00017 #endif