@@ -0,0 +1,16 @@
#pragma once
#include "fecha.hpp"
#include "nodo.hpp"
#include <iostream>
class Arbol {
private:
Nodo* raiz;
public:
Arbol();
~Arbol();
void insertar();
void last(int N);
void date(Fecha f1, Fecha f2);
}
The note is not visible to the blocked user.