summaryrefslogtreecommitdiff
path: root/include/llmr/style/property_value.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-06-30 16:52:39 +0200
committerKonstantin Käfer <mail@kkaefer.com>2014-06-30 16:52:39 +0200
commit18d898fae70681fba8cc31d73b581c360557746c (patch)
tree813ad2d0696184bef3fafefdc30318a09fa76fbc /include/llmr/style/property_value.hpp
parent93cd4c5c7b0939038eab38a6f6eb71eae4014acb (diff)
downloadqtlocation-mapboxgl-18d898fae70681fba8cc31d73b581c360557746c.tar.gz
refactor functions
Diffstat (limited to 'include/llmr/style/property_value.hpp')
-rw-r--r--include/llmr/style/property_value.hpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/include/llmr/style/property_value.hpp b/include/llmr/style/property_value.hpp
index 9772258da8..f648e9bef6 100644
--- a/include/llmr/style/property_value.hpp
+++ b/include/llmr/style/property_value.hpp
@@ -8,12 +8,15 @@
namespace llmr {
typedef util::variant<
- FunctionProperty,
- TranslateAnchorType,
- RotateAnchorType,
+ bool,
+ float,
Color,
std::string,
- bool
+ TranslateAnchorType,
+ RotateAnchorType,
+ Function<bool>,
+ Function<float>,
+ Function<Color>
> PropertyValue;
}