summaryrefslogtreecommitdiff
path: root/include/llmr/style/value.hpp
blob: f0d594b7649caa4ffcc0e3054d8289e5b997a3ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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