summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layers/custom_layer_impl.cpp
blob: 3fdeb156a25d21f17e8b531928db70350c3659ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <mbgl/style/layers/custom_layer_impl.hpp>

namespace mbgl {
namespace style {

CustomLayer::Impl::~Impl() {
}

CustomLayer::Impl::Impl(const std::string& id_,
                        std::unique_ptr<CustomLayerContext> context_):
    Layer::Impl(LayerType::Custom, id_, std::string()),
    context(std::move(context_)) {

}

void CustomLayer::Impl::didSetObserver(bool didSet) const {
    if (didSet) {
        context->attach();
    }
    else {
        context->detach();
    }
}

bool CustomLayer::Impl::hasLayoutDifference(const Layer::Impl&) const {
    return false;
}

void CustomLayer::Impl::stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer>&) const {
}

} // namespace style
} // namespace mbgl