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

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

namespace mbgl {
namespace style {
namespace conversion {

template <>
struct Converter<CustomGeometrySource::Options> {
    optional<CustomGeometrySource::Options> operator()(const Convertible& value, Error& error) const;
};

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