summaryrefslogtreecommitdiff
path: root/expression-test/expression_test_parser.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'expression-test/expression_test_parser.hpp')
-rw-r--r--expression-test/expression_test_parser.hpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/expression-test/expression_test_parser.hpp b/expression-test/expression_test_parser.hpp
index 561ccd9647..842d8a1563 100644
--- a/expression-test/expression_test_parser.hpp
+++ b/expression-test/expression_test_parser.hpp
@@ -7,18 +7,24 @@
#include <mbgl/util/optional.hpp>
#include <mbgl/util/rapidjson.hpp>
-#include <vector>
+#include <set>
#include <string>
+#include <vector>
using namespace mbgl;
struct Input {
- Input(optional<float> zoom_, optional<double> heatmapDensity_, Feature feature_)
+ Input(optional<float> zoom_,
+ optional<double> heatmapDensity_,
+ std::set<std::string> availableImages_,
+ Feature feature_)
: zoom(std::move(zoom_)),
heatmapDensity(std::move(heatmapDensity_)),
+ availableImages(std::move(availableImages_)),
feature(std::move(feature_)) {}
optional<float> zoom;
optional<double> heatmapDensity;
+ std::set<std::string> availableImages;
Feature feature;
};