-
Notifications
You must be signed in to change notification settings - Fork 1
/
Paciente.h
44 lines (34 loc) · 1.07 KB
/
Paciente.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
#pragma once
#include "Pessoa.h"
#include "Remedio.h"
#include <string>
#include <vector>
#include <iostream>
using namespace std;
class Paciente : public Pessoa{
protected:
string ala, remedio;
int tratamentoNecessario, tratamentosRealizados, idMedicoResponsavel;
string nomeMedicoResponsavel;
static vector<int> idUtilizados;
public:
Paciente();
Paciente(string nome, int idade, int tratamentoNecessario, string nomeMedicoResponsavel, int idMedicoResponsavel);
Paciente(vector<string> atributos);
static void showAtributos();
static void showDiagnosticos();
void lerAtributos();
bool realizarTratamento(Remedio* &remedioUtilizado);
string getRemedio();
string getAla();
string toString();
string toArchive();
void setMedicoResponsavel(string nomeMedicoResponsavel, int idMedicoResponsavel);
string getMedicoResponsavel();
int getTratamentoNecessario();
int getTratamentoRealizados();
int getIdMedicoResponsavel();
void setId();
static bool checaId(int id);
static void liberaId(int id);
};