-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEncargado.h
40 lines (34 loc) · 950 Bytes
/
Encargado.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
#ifndef ENCARGADO_H
#define ENCARGADO_H
#include <string>
#include "interfaces/ICollection.h"
#include "Date.h"
#include "DataEncargado.h"
using namespace std;
class Encargado : public ICollectible
{
private:
string cedula;
string nombre;
string apellido;
Date* fechaNacimiento;
public:
//operaciones
Encargado();
Encargado(string cedula, string nombre, string apellido, Date* fechaNacimiento);
Encargado(const Encargado &e);
DataEncargado *getDataEncargado();
//getters
string getCedula();
string getNombre();
string getApellido();
Date *getFechaNacimiento();
//setters
void setCedula(string cedula);
void setNombre(string nombre);
void setApellido(string apellido);
void setFechaNacimiento(Date* fechaNacimiento);
//destructor
~Encargado();
};
#endif // ENCARGADO_H