-
Notifications
You must be signed in to change notification settings - Fork 0
/
Manager.h
36 lines (28 loc) · 866 Bytes
/
Manager.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef LOADCLASSES_H_MANAGER_H
#define LOADCLASSES_H_MANAGER_H
#include <set>
#include <vector>
#include <queue>
#include "Student.h"
#include "ClassSchedule.h"
class Manager {
private:
std::set<Student> students_;
std::vector<ClassSchedule> schedule_;
//std::queue<request> requests_;
public:
//Manager Constructor
Manager();
Manager(std::set<Student> students, std::vector<ClassSchedule> schedule);
//Manager Setters
void set_students(std::set<Student> students);
void set_schedule(std::vector<ClassSchedule>);
//Manager Getters
std::set<Student> get_students() const;
std::vector<ClassSchedule> get_schedule() const;
//Manager Methods
void add_Student(Student s);
void add_schedule(ClassSchedule c);
int n_students();
};
#endif //LOADCLASSES_H_MANAGER_H