/*
 * StringUtil.cpp
 *
 *  Created on: 01.12.2009
 *      Author: sep
 */
#include <sstream>
#include "StringUtil.h"

std::string operator+(std::string s,double d){
	std::stringstream strstr;
	strstr << s << d;
	return strstr.str();
}
