#pragma once #include #include #include namespace mbgl { namespace style { class BackgroundLayer::Impl : public Layer::Impl { public: using Layer::Impl::Impl; bool hasLayoutDifference(const Layer::Impl&) const override; void stringifyLayout(rapidjson::Writer&) const override; BackgroundPaintProperties::Transitionable paint; DECLARE_LAYER_TYPE_INFO; }; } // namespace style } // namespace mbgl