1 #include <mbgl/style/layers/custom_layer_impl.hpp> 2 3 namespace mbgl { 4 namespace style { 5 Impl(const std::string & id_,std::unique_ptr<CustomLayerHost> host_)6CustomLayer::Impl::Impl(const std::string& id_, 7 std::unique_ptr<CustomLayerHost> host_) 8 : Layer::Impl(LayerType::Custom, id_, std::string()) { 9 host = std::move(host_); 10 } 11 hasLayoutDifference(const Layer::Impl &) const12bool CustomLayer::Impl::hasLayoutDifference(const Layer::Impl&) const { 13 return false; 14 } 15 stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer> &) const16void CustomLayer::Impl::stringifyLayout(rapidjson::Writer<rapidjson::StringBuffer>&) const { 17 } 18 19 } // namespace style 20 } // namespace mbgl 21