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

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

namespace mbgl {
namespace style {
namespace conversion {

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

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