#include #include namespace mbgl { using namespace style; AnnotationSource::AnnotationSource() : Source(makeMutable()) { } AnnotationSource::Impl::Impl() : Source::Impl(SourceType::Annotations, AnnotationManager::SourceID) { } void AnnotationSource::loadDescription(FileSource&) { loaded = true; } optional AnnotationSource::Impl::getAttribution() const { return {}; } } // namespace mbgl