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

#ifndef BINTREE_H_
#define BINTREE_H_

#include "Li.h"

class BinTree: public Li {
public:
	Li* tl2;
	BinTree();
	BinTree(std::string hd,Li* tl);
	BinTree(std::string hd,Li* tl,Li* tl2);
	~BinTree();
};

#endif /* BINTREE_H_ */
