-
Notifications
You must be signed in to change notification settings - Fork 0
/
Doctor.h
47 lines (31 loc) · 1.09 KB
/
Doctor.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
37
38
39
40
41
42
43
44
45
46
47
//
// Created by dell on 12/2/2020.
//
#ifndef FINAL_PROJECT_DOCTOR_H
#define FINAL_PROJECT_DOCTOR_H
#include "Human.h"
#include <sstream>
class Doctor : public Human {
private:
string Day;
string Time;
string Field;
string Visited_Patients;
vector<string> doctor_all_ino;
public:
void Day_Setter(string day);
string Day_Getter();
bool Day_Validate(string day);
vector<string> doctor_all_ino_getter()const;
string Time_getter();
void Time_setter(string time);
string Field_getter();
void Field_setter(string field);
string Visited_Patients_getter();
void Visited_Patients_setter(string visited_patients);
void doctor_all_ino_setter (int index , string Value);
///////////////////////////////////////////////////////////////////////////////////
// friend ofstream& operator<<(ofstream& out,const Doctor& x);
Doctor(string id, string name, string last_Name, string phone_number, string user_name, string password, string age, string field, string day, string time, string visited_patients);
};
#endif //FINAL_PROJECT_DOCTOR_H