You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
593 B
22 lines
593 B
3 years ago
|
#ifndef WORK20220325_TEACHASSISTANT_H
|
||
|
#define WORK20220325_TEACHASSISTANT_H
|
||
|
|
||
3 years ago
|
#include "students/Student.h"
|
||
|
#include "teachers/Teacher.h"
|
||
|
#include "students/Graduate.h"
|
||
3 years ago
|
|
||
3 years ago
|
class TeachAssistant : public Graduate, Teacher {
|
||
3 years ago
|
public:
|
||
|
TeachAssistant(int classId, const Person &person, const std::string &subject, const Teacher &adviser,
|
||
|
const std::string &job, const std::string &department);
|
||
|
|
||
|
TeachAssistant() = delete;
|
||
|
|
||
|
std::string toString();
|
||
|
|
||
3 years ago
|
TeachAssistant(const TeachAssistant &teachAssistant);
|
||
3 years ago
|
};
|
||
|
|
||
|
|
||
|
#endif //WORK20220325_TEACHASSISTANT_H
|