Index: src/shared/Utils.h |
diff --git a/src/shared/Utils.h b/src/shared/Utils.h |
index c437cf2d98b6091dd161107ce86fb905b63d4ad8..b8f33e71fd13869d127be90bd5f66fd4a8013b87 100644 |
--- a/src/shared/Utils.h |
+++ b/src/shared/Utils.h |
@@ -5,6 +5,7 @@ |
#include <locale> |
#include <functional> |
#include <string> |
+#include <vector> |
#define WM_ALREADY_UP_TO_DATE WM_APP+1 |
#define WM_UPDATE_CHECK_ERROR WM_APP+2 |
@@ -35,6 +36,7 @@ bool IsWindows8OrLater(); |
std::string ToUtf8String(const std::wstring& str); |
std::wstring ToUtf16String(const std::string& str); |
+std::vector<std::wstring> ToUtf16Strings(const std::vector<std::string>& value); |
Eric
2015/02/09 16:18:57
Where's the other half of the pair ToUtf8Strings?
sergei
2015/02/09 16:55:37
We don't need, it would be a dead code.
|
std::wstring GetDllDir(); |
std::wstring GetAppDataPath(); |
void ReplaceString(std::wstring& input, const std::wstring placeholder, const std::wstring replacement); |