#include "Leaf.h"
#include <iostream>
#include <string>

using namespace std;

Leaf::Leaf()
{
}
Leaf::Leaf(char Data, string Code)
{
	this->Data = Data;
	this->byteCode = Code;
}

Leaf::~Leaf(void)
{
}

