summaryrefslogtreecommitdiff
path: root/src/mbgl/text/glyph_range.hpp
blob: 7a0c276df23daa47eb91951ab236d02df4e596bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MBGL_TEXT_GLYPH_RANGE
#define MBGL_TEXT_GLYPH_RANGE

#include <utility>
#include <cstdint>

namespace mbgl {

typedef std::pair<uint16_t, uint16_t> GlyphRange;

} // end namespace mbgl

#endif