#pragma once #include #include #include namespace mbgl { namespace style { class FillLayer::Impl : public Layer::Impl { public: using Layer::Impl::Impl; bool hasLayoutDifference(const Layer::Impl&) const override; void stringifyLayout(rapidjson::Writer&) const override; Properties<>::Unevaluated layout; FillPaintProperties::Transitionable paint; }; } // namespace style } // namespace mbgl