summaryrefslogtreecommitdiff
path: root/include/mbgl/util/font_stack.hpp
blob: d0b431e9ea3b19641acd84037dc3fc82e1ff3fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <string>
#include <vector>

namespace mbgl {

// An array of font names
using FontStack = std::vector<std::string>;

std::string fontStackToString(const FontStack&);

struct FontStackHash {
    std::size_t operator()(const FontStack&) const;
};

} // namespace mbgl