/*
 * Object.cpp
 *
 *  Created on: 01.12.2009
 *      Author: sep
 */

#include "Object.h"
#include <sstream>


Object::Object() {
	// TODO Auto-generated constructor stub

}

Object::~Object() {
	// TODO Auto-generated destructor stub
}

std::string Object::toString(){
	return "Object";
}

