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.
21 lines
593 B
21 lines
593 B
#ifndef WORK20220325_TEACHASSISTANT_H
|
|
#define WORK20220325_TEACHASSISTANT_H
|
|
|
|
#include "students/Student.h"
|
|
#include "teachers/Teacher.h"
|
|
#include "students/Graduate.h"
|
|
|
|
class TeachAssistant : public Graduate, Teacher {
|
|
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();
|
|
|
|
TeachAssistant(const TeachAssistant &teachAssistant);
|
|
};
|
|
|
|
|
|
#endif //WORK20220325_TEACHASSISTANT_H
|
|
|