summaryrefslogtreecommitdiff
path: root/platform/default/codecvt/codecvt
blob: 8d21e8234839e1ffdca62114a74bb8f18608ae2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#pragma once

// This is a minimal polyfill that'll only work exactly for how we use codecvt

#include <string>
#include <boost/locale/encoding_utf.hpp>

namespace std {

template <typename Codecvt, typename Elem = wchar_t>
class wstring_convert {
public:
    static_assert(std::is_same<Elem, typename Codecvt::Elem>::value, "type mismatch");

    inline std::basic_string<Elem> from_bytes(const string& str) {
        return boost::locale::conv::utf_to_utf<Elem>(str);
    }

    inline string to_bytes(const std::basic_string<Elem>& str) {
        return boost::locale::conv::utf_to_utf<char>(str);
    }
};

template <typename E>
class codecvt_utf8_utf16 {
public:
    using Elem = E;
};

} // namespace std