-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCliente.h
More file actions
executable file
·46 lines (34 loc) · 1.07 KB
/
Copy pathCliente.h
File metadata and controls
executable file
·46 lines (34 loc) · 1.07 KB
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
// Created by Hugo.
#ifndef ENTREGABLE1_CLIENTE_H
#define ENTREGABLE1_CLIENTE_H
#include "MenuOrdenCompra.h"
#include <fstream>
class Cliente {
private:
std::string name;
std::string direccion; // para listas invertidas
std::string estado;
std::string codigoCliente;
std::string RFC;
std::string tipoCliente; // para listas invertidas
public:
Cliente();
Cliente(Cliente& clnt);
Cliente(std::string codCliente, std::string rfcCliente);
std::string &getName() ;
void setName( std::string &name);
std::string &getDireccion() ;
void setDireccion( std::string &direccion);
std::string &getEstado() ;
void setEstado( std::string &estado);
std::string &getCodigoCliente() ;
void setCodigoCliente( std::string &codigoCliente);
std::string &getRfc() ;
void setRfc( std::string &rfc);
std::string &getTipoCliente() ;
void setTipoCliente( std::string &tipoCliente);
std::string toString();
bool operator==( Cliente &rhs) ;
bool operator!=( Cliente &rhs) ;
};
#endif //ENTREGABLE1_CLIENTE_H