blob: d0b431e9ea3b19641acd84037dc3fc82e1ff3fcd [file] [log] [blame]
#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