summaryrefslogtreecommitdiff
path: root/src/mbgl/text/glyph_set.hpp
blob: 8b56ccd7a3cb0dea5d31a597d7984e02ffa883c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include <mbgl/text/glyph_pbf.hpp>

#include <map>

namespace mbgl {

class GlyphSet {
public:
    void insert(SDFGlyph&&);
    const std::map<uint32_t, SDFGlyph>& getSDFs() const;

private:
    std::map<uint32_t, SDFGlyph> sdfs;
};

} // end namespace mbgl