summaryrefslogtreecommitdiff
path: root/src/mbgl/style/source_impl.cpp
blob: 0683f847cb6743b485e6d483d37aa5e55dde232d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <mbgl/style/source_impl.hpp>

namespace mbgl {
namespace style {

Source::Impl::Impl(SourceType type_, std::string id_)
    : type(type_),
      id(std::move(id_)) {
}

} // namespace style
} // namespace mbgl