summaryrefslogtreecommitdiffstats
path: root/src/common/win32/wstring.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/win32/wstring.cc')
-rw-r--r--src/common/win32/wstring.cc27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/common/win32/wstring.cc b/src/common/win32/wstring.cc
new file mode 100644
index 000000000..1f9b49a58
--- /dev/null
+++ b/src/common/win32/wstring.cc
@@ -0,0 +1,27 @@
+/*
+ * Ceph - scalable distributed file system
+ *
+ * Copyright (C) 2022 Cloudbase Solutions
+ *
+ * This is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software
+ * Foundation. See file COPYING.
+ *
+ */
+
+#include "wstring.h"
+
+#include <boost/locale/encoding_utf.hpp>
+
+using boost::locale::conv::utf_to_utf;
+
+std::wstring to_wstring(const std::string& str)
+{
+ return utf_to_utf<wchar_t>(str.c_str(), str.c_str() + str.size());
+}
+
+std::string to_string(const std::wstring& str)
+{
+ return utf_to_utf<char>(str.c_str(), str.c_str() + str.size());
+}