summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layers/line_layer_impl.hpp
blob: 70d357c59263ffbb828fc19fe687785b792c7dab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include <mbgl/style/layer_impl.hpp>
#include <mbgl/style/layers/line_layer.hpp>
#include <mbgl/style/layers/line_layer_properties.hpp>

namespace mbgl {
namespace style {

class LineLayer::Impl : public Layer::Impl {
public:
    using Layer::Impl::Impl;

    void stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer>&) const override;

    std::unique_ptr<RenderLayer> createRenderLayer() const override;

    LineLayoutProperties layout;
    LinePaintProperties::Cascading cascading;
};

} // namespace style
} // namespace mbgl