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

#include <mbgl/style/layer_impl.hpp>
#include <mbgl/style/layers/fill_layer.hpp>
#include <mbgl/style/layers/fill_layer_properties.hpp>

namespace mbgl {
namespace style {

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

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

    FillPaintProperties::Transitionable paint;
};

} // namespace style
} // namespace mbgl