#pragma once #include #include namespace mbgl { namespace style { class VectorSource::Impl : public Source::Impl { public: Impl(std::string id); Impl(const Impl&, Tileset); optional getAttribution() const final; const optional tileset; }; } // namespace style } // namespace mbgl