| 27 | // ##### WideString to String ##### // |
| 28 | |
| 29 | std::string wideStringToString(const std::wstring& string) |
| 30 | { |
| 31 | std::wstring_convert<std::codecvt_utf8<wchar_t>, wchar_t> converter; |
| 32 | return converter.to_bytes(string); |
| 33 | } |
| 34 | |
| 35 | std::vector<std::string> wideStringsToStrings(const std::vector<std::wstring> strings) |
| 36 | { |
no outgoing calls
no test coverage detected