/*
 * ToString.h
 *
 *  Created on: 02.12.2008
 *      Author: sep
 */

#ifndef TOSTRING_H_
#define TOSTRING_H_
#include <string>

class ToString {
public:
	virtual std::string toString()=0;
};

std::string operator+(std::string s,int i);
std::string operator+(int i,std::string s);

std::string operator+(std::string s,double i);
std::string operator+(double i,std::string s);

#endif /* TOSTRING_H_ */
