I know C+11 is not available everywhere but they did work on lexical casting:
string to_string(int val);
string to_string(unsigned val);
string to_string(long val);
string to_string(unsigned long val);
string to_string(long long val);
string to_string(unsigned long long val);
string to_string(float val);
string to_string(double val);
string to_string(long double val);

And similarly for wstring.  They also have conversions in the other way: stoi, etc.

Here's hoping the upgrade at least the standard library a LOT faster going forward.

_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to