summaryrefslogtreecommitdiff
path: root/src/mbgl/style/sources/vector_source_impl.hpp
blob: 4526fbe35668e90e1e81f0f3f0296c368c36fede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <mbgl/style/sources/vector_source.hpp>
#include <mbgl/style/source_impl.hpp>

namespace mbgl {
namespace style {

class VectorSource::Impl : public Source::Impl {
public:
    Impl(std::string id);
    Impl(const Impl&, Tileset);

    optional<std::string> getAttribution() const final;

    const optional<Tileset> tileset;
};

} // namespace style
} // namespace mbgl