#ifdef __amigaos4__ #include #include namespace std { template string to_string(const T &n) { ostringstream strm; strm << n; return strm.str(); } typedef basic_string wstring; typedef basic_ostream wostream; typedef basic_ostringstream wostringstream; typedef basic_stringstream wstringstream; } #endif