init
This commit is contained in:
22
diccionariocuacs.hpp
Normal file
22
diccionariocuacs.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
#include "fecha.hpp"
|
||||
#include "cuac.hpp"
|
||||
#include <list>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
class DiccionarioCuacs {
|
||||
private:
|
||||
list<Cuac> lista;
|
||||
int contador;
|
||||
|
||||
public:
|
||||
DiccionarioCuacs();
|
||||
void insertar(Cuac nuevo);
|
||||
void last(int n);
|
||||
void follow(string nombre);
|
||||
void date(Fecha f1, Fecha f2);
|
||||
int numElem() { return contador; }
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user