-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpatient.hpp
73 lines (59 loc) · 1.2 KB
/
patient.hpp
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#pragma once
#include <iostream>
#include <algorithm>
#include <stdexcept>
#include <stdint.h>
// #include <>
struct Date
{
std::byte day;
std::byte month;
uint16_t year;
uint32_t datecode;
};
struct Diag
{
std::string desis;
std::string pills;
};
enum Estate{I, II, III};
class PatientQueue{
private:
Patient** _patients_I;
Patient** _patients_II;
Patient** _patients_III;
size_t _pI;
size_t _pII;
size_t _pIII;
public:
PatientQueue();
~PatientQueue();
Patient* GetNext();
void AddPatient(Patient* P);
};
class Doctor{
private:
std::string* _drugs = {};
public:
void TakePatient(Patient* P);
void PrintProblem(Patient* P);
void FillDiagnos(Diag* diag);
~Doctor();
};
class Patient
{
private:
std::string _name;
std::string _patronomic;
std::string _surname;
Date _bornDate;
// UUID _patientID;
Diag _diag;
std::string _problem;
Estate _estate;
void ParseFIO(std::string FIO);
public:
Patient(std::string name, std::string patronomic, std::string surname, std::string problem, Date bornDate);
Patient(std::string FIO, std::string problem, Date bornDate);
void PatientInfo();
};