summaryrefslogtreecommitdiff
path: root/include/mbgl/style/expression/boolean_operator.hpp
blob: ad247254228f215e640f55b9d4bcd4c0742bf6b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#pragma once
#include <mbgl/style/expression/expression.hpp>

namespace mbgl {
namespace style {
namespace expression {

class Any : public Expression  {
public:
    Any(type::Array type_, std::vector<std::unique_ptr<Expression>> inputs_) :
        Expression(type_),
        inputs(std::move(inputs_))
    {}

    static ParseResult parse(const mbgl::style::conversion::Convertible& value, ParsingContext ctx);

    EvaluationResult evaluate(const EvaluationParameters& params) const override;
    void accept(std::function<void(const Expression*)> visit) const override;

private:
    std::unique_ptr<Expression> inputs;
};

class All : public Expression  {
public:
    All(type::Array type_, std::vector<std::unique_ptr<Expression>> inputs_) :
        Expression(type_),
        inputs(std::move(inputs_))
    {}

    static ParseResult parse(const mbgl::style::conversion::Convertible& value, ParsingContext ctx);

    EvaluationResult evaluate(const EvaluationParameters& params) const override;
    void accept(std::function<void(const Expression*)> visit) const override;

private:
    std::unique_ptr<Expression> inputs;
};

} // namespace expression
} // namespace style
} // namespace mbgl