summaryrefslogtreecommitdiff
path: root/include/mbgl/util/utf.hpp
blob: d6ba2a1f2fc4e37b357bb102e96e1bf16c999bb0 (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
#ifndef MBGL_UTIL_UTF
#define MBGL_UTIL_UTF

#include <memory>

#include <boost/regex/pending/unicode_iterator.hpp>

namespace mbgl {

namespace util {

class utf8_to_utf32 {
 public:
    static std::u32string convert(std::string const& utf8)
    {
        boost::u8_to_u32_iterator<std::string::const_iterator> begin(utf8.begin());
        boost::u8_to_u32_iterator<std::string::const_iterator> end(utf8.end());
        return std::u32string(begin,end);
    }
};

}}

#endif