summaryrefslogtreecommitdiff
path: root/include/llmr/style/style_layer_group.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/style_layer_group.hpp
parent8feedf7fc2f9b41a48d9f02ea572d312514f115f (diff)
downloadqtlocation-mapboxgl-93cd4c5c7b0939038eab38a6f6eb71eae4014acb.tar.gz
move StyleLayerGroup and PropertyTransition to their own files
Diffstat (limited to 'include/llmr/style/style_layer_group.hpp')
-rw-r--r--include/llmr/style/style_layer_group.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/llmr/style/style_layer_group.hpp b/include/llmr/style/style_layer_group.hpp
new file mode 100644
index 0000000000..73214830fe
--- /dev/null
+++ b/include/llmr/style/style_layer_group.hpp
@@ -0,0 +1,21 @@
+#ifndef LLMR_STYLE_STYLE_LAYER_GROUP
+#define LLMR_STYLE_STYLE_LAYER_GROUP
+
+#include <llmr/style/style_layer.hpp>
+
+#include <vector>
+
+namespace llmr {
+
+class StyleLayerGroup {
+public:
+ void setClasses(const std::vector<std::string> &class_names, timestamp now,
+ const PropertyTransition &defaultTransition);
+
+public:
+ std::vector<std::shared_ptr<StyleLayer>> layers;
+};
+
+}
+
+#endif