summaryrefslogtreecommitdiff
path: root/include/llmr/style/value.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-01-27 14:07:56 +0100
committerKonstantin Käfer <mail@kkaefer.com>2014-01-27 14:07:56 +0100
commite2dbcc95b5cf171e99e237513998d17a0c70f3ad (patch)
treebc7fc34b47402aaa9303c8d038d2158f1b7b7aa3 /include/llmr/style/value.hpp
parent2a6e4597e29d440e03416b0cf9d47da4eb2ff781 (diff)
downloadqtlocation-mapboxgl-e2dbcc95b5cf171e99e237513998d17a0c70f3ad.tar.gz
draw fills according to the style
Diffstat (limited to 'include/llmr/style/value.hpp')
-rw-r--r--include/llmr/style/value.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/llmr/style/value.hpp b/include/llmr/style/value.hpp
new file mode 100644
index 0000000000..f0d594b764
--- /dev/null
+++ b/include/llmr/style/value.hpp
@@ -0,0 +1,15 @@
+#ifndef LLMR_STYLE_VALUE
+#define LLMR_STYLE_VALUE
+
+#include <boost/variant.hpp>
+#include <llmr/util/pbf.hpp>
+
+namespace llmr {
+
+typedef boost::variant<std::string, double, int64_t, uint64_t, bool> Value;
+
+Value parseValue(pbf data);
+
+}
+
+#endif