#pragma once #include #include #include namespace mbgl { class TransformState; namespace style { class CustomLayer::Impl : public Layer::Impl { public: Impl(const std::string& id, std::unique_ptr host); bool hasLayoutDifference(const Layer::Impl&) const override; void stringifyLayout(rapidjson::Writer&) const override; const LayerTypeInfo* getTypeInfo() const noexcept final; std::shared_ptr host; }; } // namespace style } // namespace mbgl