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