#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; LayerFactory* getLayerFactory() const noexcept final; BackgroundPaintProperties::Transitionable paint; }; } // namespace style } // namespace mbgl