1#pragma once
2
3#include <string>
4#include <vector>
5
6namespace mbgl {
7
8// An array of font names
9using FontStack = std::vector<std::string>;
10
11std::string fontStackToString(const FontStack&);
12
13struct FontStackHash {
14 std::size_t operator()(const FontStack&) const;
15};
16
17} // namespace mbgl
18

source code of qtlocation/src/3rdparty/mapbox-gl-native/include/mbgl/util/font_stack.hpp