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

#include <mbgl/style/conversion.hpp>
#include <mbgl/style/position.hpp>

namespace mbgl {
namespace style {
namespace conversion {

template <>
struct Converter<Position> {
    optional<Position> operator()(const Value& value, Error& error) const;
};

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