1 Star 1 Fork 0

huizhuoli/summer_study

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
TeachClassManager.h 671 Bytes
Copy Edit Raw Blame History
huizhuoli authored 2022-06-26 11:09 . 修改对象
//
// Created by tjlhz on 2022/6/25.
//
#ifndef SUMMER_STUDY_TEACHCLASSMANAGER_H
#define SUMMER_STUDY_TEACHCLASSMANAGER_H
#include <vector>
#include "TeachClass.h"
class TeachClassManager {
public:
TeachClassManager();
~TeachClassManager();
vector<CTeachClass *> mTeachClassVec;
bool InsertTeachClass(CTeachClass teachClass);
bool EditTeachClass(CTeachClass teachClass);
bool DelTeachClass(int teachClassId);
CTeachClass * GetTeachClass(int teachClassId);
vector<CTeachClass *> GetCourseVec(string courseName, string teacherName);
bool JoinClass(int teachClassId, CStudent student);
};
#endif //SUMMER_STUDY_TEACHCLASSMANAGER_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/huizhuoli/summer_study.git
git@gitee.com:huizhuoli/summer_study.git
huizhuoli
summer_study
summer_study
master

Search