summaryrefslogtreecommitdiff
path: root/include/llmr/style/value.hpp
diff options
context:
space:
mode:
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