summaryrefslogtreecommitdiff
path: root/src/mbgl/util/utf.hpp
blob: c13b09437196bfd65b6ddf2ddeaa427288db3823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <string>

namespace mbgl {
namespace util {

class utf8_to_utf16 {
public:
    static std::u16string convert(std::string const&);
};

} // namespace util
} // namespace mbgl