summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layer_impl.cpp
blob: b6ab14501245529d05623259d405117f7e30d289 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <mbgl/style/layer_impl.hpp>

namespace mbgl {
namespace style {

Layer::Impl::Impl(std::string layerID, std::string sourceID)
    : id(std::move(layerID)),
      source(std::move(sourceID)) {
}

void Layer::Impl::populateFontStack(std::set<FontStack>&) const {}

} // namespace style
} // namespace mbgl