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

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

namespace mbgl {
namespace style {
namespace conversion {

template <>
struct Converter<ColorRampPropertyValue> {
    optional<ColorRampPropertyValue> operator()(const Convertible& value, Error& error, bool /* convertTokens */ = false) const;
};

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