O.P. RE: C++ help :P
Ok, It work, thanks. I did a method that changes it int to string.
#include <string>
#incluce <sstream>
std::string Extras::intToString(int n){
std::string s;
std::stringstream ss;
ss << n;
s = ss.str();
return s;
}
This post was edited on 08-14-2005 at 01:04 AM by leito.
|