Newer
Older
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
#ifndef __FUNCIONARIO__H__
#define __FUNCIONARIO__H__
#include <iostream>
#include <string>
using namespace std;
class Funcionario {
protected:
int id;
string funcao;
string nome;
string cpf;
short idade;
char tipo_sanguineo;
char fator_RH;
string especialidade;
public:
int getId();
void setId(int identity);
string getFuncao();
void setFuncao(string role);
string getNome();
void setNome(string name);
string getCpf();
void setCpf(string doc_cpf);
short getIdade();
void setIdade(short age);
char getTipo_sanguineo();
void setTipo_sanguineo(char blood_type);
char getFator_RH();
void setFator_RH(char rh_factor);
string getEspecialidade();
void setEspecialidade(string specialty);
Funcionario(int identity, string role, string name, string doc_cpf, short age, char blood_type, char rh_factor, string specialty);
};
#endif