summaryrefslogtreecommitdiff
path: root/include/llmr/style/property_transition.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-06-30 11:46:03 +0200
committerKonstantin Käfer <mail@kkaefer.com>2014-06-30 11:46:03 +0200
commit93cd4c5c7b0939038eab38a6f6eb71eae4014acb (patch)
tree76d8efb417a20f16e32e3d5901fd5d9db351ac60 /include/llmr/style/property_transition.hpp
parent8feedf7fc2f9b41a48d9f02ea572d312514f115f (diff)
downloadqtlocation-mapboxgl-93cd4c5c7b0939038eab38a6f6eb71eae4014acb.tar.gz
move StyleLayerGroup and PropertyTransition to their own files
Diffstat (limited to 'include/llmr/style/property_transition.hpp')
-rw-r--r--include/llmr/style/property_transition.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/llmr/style/property_transition.hpp b/include/llmr/style/property_transition.hpp
new file mode 100644
index 0000000000..0175274436
--- /dev/null
+++ b/include/llmr/style/property_transition.hpp
@@ -0,0 +1,15 @@
+#ifndef LLMR_STYLE_PROPERTY_TRANSITION
+#define LLMR_STYLE_PROPERTY_TRANSITION
+
+#include <cstdint>
+
+namespace llmr {
+
+struct PropertyTransition {
+ uint16_t duration = 0;
+ uint16_t delay = 0;
+};
+
+}
+
+#endif \ No newline at end of file