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

#ifndef LI_H_
#define LI_H_

#include <string>

class Li {
public:
	std::string hd;
	Li* tl;
	bool isEmpty;
	Li();
	Li(std::string hd,Li* tl);
	virtual ~Li();
};

#endif /* LI_H_ */
