summaryrefslogtreecommitdiff
path: root/src/mbgl/style/style_layer_group.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/style_layer_group.hpp')
-rw-r--r--src/mbgl/style/style_layer_group.hpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/mbgl/style/style_layer_group.hpp b/src/mbgl/style/style_layer_group.hpp
deleted file mode 100644
index 79b75a55e9..0000000000
--- a/src/mbgl/style/style_layer_group.hpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef MBGL_STYLE_STYLE_LAYER_GROUP
-#define MBGL_STYLE_STYLE_LAYER_GROUP
-
-#include <mbgl/style/style_layer.hpp>
-
-#include <vector>
-#include <chrono>
-
-namespace mbgl {
-
-class StyleLayerGroup {
-public:
- void setClasses(const std::vector<std::string> &class_names, std::chrono::steady_clock::time_point now,
- const PropertyTransition &defaultTransition);
- void updateProperties(float z, std::chrono::steady_clock::time_point now, ZoomHistory &zoomHistory);
-
- bool hasTransitions() const;
-public:
- std::vector<util::ptr<StyleLayer>> layers;
-};
-
-}
-
-#endif