| 7 | namespace core { |
| 8 | |
| 9 | std::wstring stringToWideString(const std::string& string) |
| 10 | { |
| 11 | std::wstring_convert<std::codecvt_utf8<wchar_t>, wchar_t> converter; |
| 12 | return converter.from_bytes(string); |
| 13 | } |
| 14 | |
| 15 | std::vector<std::wstring> stringsToWideStrings(const std::vector<std::string>& strings) |
| 16 | { |
no outgoing calls
no test coverage detected