diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2018-03-01 16:02:56 -0800 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2018-03-01 17:02:26 -0800 |
commit | 54f3dc961e3a9e668312d7210706cddcf19676f7 (patch) | |
tree | 2606d627a67594a7146aa45e428052c596c99235 /include | |
parent | 15ba70b5ff018ec2285e0459bf557d1f61240c41 (diff) | |
download | qtlocation-mapboxgl-54f3dc961e3a9e668312d7210706cddcf19676f7.tar.gz |
Relax type checking for "length"
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/style/expression/length.hpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/include/mbgl/style/expression/length.hpp b/include/mbgl/style/expression/length.hpp new file mode 100644 index 0000000000..1d754f1932 --- /dev/null +++ b/include/mbgl/style/expression/length.hpp @@ -0,0 +1,32 @@ +#pragma once + +#include <mbgl/style/expression/expression.hpp> +#include <mbgl/style/conversion.hpp> +#include <mbgl/style/expression/parsing_context.hpp> + +#include <memory> +#include <vector> + +namespace mbgl { +namespace style { +namespace expression { + +class Length : public Expression { +public: + Length(std::unique_ptr<Expression> input); + + static ParseResult parse(const mbgl::style::conversion::Convertible& value, ParsingContext& ctx); + + EvaluationResult evaluate(const EvaluationContext& params) const override; + void eachChild(const std::function<void(const Expression&)>& visit) const override; + bool operator==(const Expression& e) const override; + std::vector<optional<Value>> possibleOutputs() const override; + std::string getOperator() const override { return "length"; } + +private: + std::unique_ptr<Expression> input; +}; + +} // namespace expression +} // namespace style +} // namespace mbgl |