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

#include <mbgl/util/feature.hpp>

namespace mbgl {
namespace style {

template <class T>
class IdentityStops {
public:
    optional<T> evaluate(const Value&) const;

    friend bool operator==(const IdentityStops&,
                           const IdentityStops&) {
        return true;
    }
};

} // namespace style
} // namespace mbgl