/*
 * BinTree.cpp
 *
 *  Created on: 24.11.2009
 *      Author: sep
 */

#include "BinTree.h"

BinTree::BinTree():Li() {
}
BinTree::BinTree(std::string hd,Li* tl):Li(hd,tl){
	tl2=new Li();
}
BinTree::BinTree(std::string hd,Li* tl,Li* tl2):Li(hd,tl){
	this->tl2=tl2;
}

BinTree::~BinTree() {
	if (!isEmpty){
		delete tl2;
	}
}
