MultiAgentDecisionProcess  Release 0.2.1
StringTools.cpp
Go to the documentation of this file.
1 
28 #include "StringTools.h"
29 
30 using namespace std;
31 
32 namespace StringTools{
33 
34 string Append(const std::string& ioString, int inValue)
35 {
36  std::ostringstream o;
37  o << ioString << inValue;
38  return o.str();
39 }
40 
41 }
42