summaryrefslogtreecommitdiff
path: root/include/llmr/style/applied_class_properties.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-06-30 17:41:25 +0200
committerKonstantin Käfer <mail@kkaefer.com>2014-06-30 17:41:25 +0200
commita6f7696feb466aeeab59d205b4f0b41e04cf9b60 (patch)
tree23c97fbe0a95785ff158a2ed21250283775d821c /include/llmr/style/applied_class_properties.hpp
parent18d898fae70681fba8cc31d73b581c360557746c (diff)
downloadqtlocation-mapboxgl-a6f7696feb466aeeab59d205b4f0b41e04cf9b60.tar.gz
add interpolation
Diffstat (limited to 'include/llmr/style/applied_class_properties.hpp')
-rw-r--r--include/llmr/style/applied_class_properties.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llmr/style/applied_class_properties.hpp b/include/llmr/style/applied_class_properties.hpp
index cda3a42a48..0c80b0a173 100644
--- a/include/llmr/style/applied_class_properties.hpp
+++ b/include/llmr/style/applied_class_properties.hpp
@@ -34,6 +34,10 @@ public:
void add(ClassID class_id, timestamp begin, timestamp end, const PropertyValue &value) {
properties.emplace_back(class_id, begin, end, value);
}
+
+ bool hasTransitions() const {
+ return properties.size() > 1;
+ }
};
}