summaryrefslogtreecommitdiff
path: root/include/mbgl/style/conversion/source.hpp
blob: 19bc1ce6b680cd3875a7f15e8bc51c193f5d4391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include <mbgl/style/source.hpp>
#include <mbgl/style/conversion.hpp>
#include <mbgl/util/optional.hpp>

#include <memory>

namespace mbgl {
namespace style {
namespace conversion {

template <>
struct Converter<std::unique_ptr<Source>> {
public:
    optional<std::unique_ptr<Source>> operator()(const Convertible& value, Error& error, const std::string& id) const;
};

} // namespace conversion
} // namespace style
} // namespace mbgl