blob: cfb268006bbd32ded4047953b6f3e762918ae490 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <mbgl/style/source.hpp>
#include <mbgl/style/source_impl.hpp>
namespace mbgl {
namespace style {
Source::Source(SourceType type_, std::unique_ptr<Impl> baseImpl_)
: baseImpl(std::move(baseImpl_)), type(type_) {
}
Source::~Source() = default;
const std::string& Source::getID() const {
return baseImpl->id;
}
optional<std::string> Source::getAttribution() const {
return baseImpl->getAttribution();
}
} // namespace style
} // namespace mbgl
|