-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenuClientes.h
More file actions
executable file
·40 lines (29 loc) · 886 Bytes
/
MenuClientes.h
File metadata and controls
executable file
·40 lines (29 loc) · 886 Bytes
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
// Created by Hugo.
#ifndef ENTREGABLE1_MENUCLIENTES_H
#define ENTREGABLE1_MENUCLIENTES_H
#include "Cliente.h"
#include "ListaClientes.h"
#include "NodoCliente.h"
#include "ListaInvertida.h"
class MenuClientes
{
private:
Cliente clienteRAM;
ListaClientes ListaClientesRAM;
ListaInvertida invertidaRAM;
public:
MenuClientes();
void setClienteRam(Cliente);
Cliente getClienteRam();
ListaClientes& getListaClientesRam();
void create(); /// escribir index.txt y clientes.txt
void show(); /// leer index, despues leer clientes
void update(); /// modificar index y clientes ----.txt
void deleteC();/// eliminar del index y de clientes ---.txt
void mainMenu();
void cargarLista();
void mostrarLista();
void mostrarClientesPorEdo(std::string edo);
void mostrarLlistaInvertida();
};
#endif //ENTREGABLE1_MENUCLIENTES_H