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

namespace mbgl {
namespace style {

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

} // namespace style
} // namespace mbgl