summaryrefslogtreecommitdiffstats
path: root/2022-2/L10/mitsuo/Nodo.cpp
blob: 450bca8442a4f024a49da3537c835cde6fd58caf (plain)
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
/* 
 * File:   Nodo.cpp
 * Author: mitsuo
 * 
 * Created on 02 December 2022, 12:38
 */

#include <iostream>
#include <iomanip>
#include "Nodo.h"

using namespace std;

Nodo::Nodo() {
    this->med = nullptr;
    this->izq = nullptr;
    this->der = nullptr;
}

Nodo::Nodo(const Nodo& orig) {
}

Nodo::~Nodo() {
}