gisty
22.07.2011 06:44 GajimDEACACE3
void convert_ulong_to_string(uint32_t n,string &str)
{
std::ostringstream o;
o << n;
str = o.str();
}
----
мда