summaryrefslogtreecommitdiff
path: root/src/mbgl/util
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-04-28 16:33:09 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-04-28 16:33:09 -0700
commitda78422c5c37b2150eefeb399658903e45bf05d9 (patch)
tree1a7219a082c02de4f9f4d1274abb289090989826 /src/mbgl/util
parent10528091db0baaad4b528555498d43236e32ccce (diff)
downloadqtlocation-mapboxgl-da78422c5c37b2150eefeb399658903e45bf05d9.tar.gz
[core] Prepare Filter for public API (#4900)
Diffstat (limited to 'src/mbgl/util')
-rw-r--r--src/mbgl/util/value.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mbgl/util/value.hpp b/src/mbgl/util/value.hpp
new file mode 100644
index 0000000000..78507c7f25
--- /dev/null
+++ b/src/mbgl/util/value.hpp
@@ -0,0 +1,9 @@
+#pragma once
+
+#include <mbgl/util/variant.hpp>
+
+namespace mbgl {
+
+typedef variant<bool, int64_t, uint64_t, double, std::string> Value;
+
+} // namespace mbgl