17 lines
220 B
C++
17 lines
220 B
C++
#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);
|
|
}
|