c/c++课的作业合集,都是很简单的文件。
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.
cpp-work/work20220325/person/TeachAssistant.h

22 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