Back to Richel Bilderbeek's homepage.
Back to Richel Bilderbeek's Code Snippets.
StrToWide
Converts a std::string to WideString
* View the code of 'StrToWide' in plain text.
#include <string>
//From http://www.richelbilderbeek.nl/CppStrToWide.htm
WideString StrToWide(const std::string& s)
{
return s.c_str();
}
Back to Richel Bilderbeek's Code Snippets.
Back to Richel Bilderbeek's homepage.