summaryrefslogtreecommitdiff
path: root/src/mbgl/style/layers/custom_layer_impl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/style/layers/custom_layer_impl.hpp')
-rw-r--r--src/mbgl/style/layers/custom_layer_impl.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mbgl/style/layers/custom_layer_impl.hpp b/src/mbgl/style/layers/custom_layer_impl.hpp
index 1ebf1b53f1..d8b8a7f286 100644
--- a/src/mbgl/style/layers/custom_layer_impl.hpp
+++ b/src/mbgl/style/layers/custom_layer_impl.hpp
@@ -1,6 +1,7 @@
#pragma once
#include <mbgl/style/layer_impl.hpp>
+#include <mbgl/style/layer_properties.hpp>
#include <mbgl/style/layers/custom_layer.hpp>
#include <memory>
@@ -24,5 +25,11 @@ public:
DECLARE_LAYER_TYPE_INFO;
};
+class CustomLayerProperties final : public LayerProperties {
+public:
+ explicit CustomLayerProperties(Immutable<CustomLayer::Impl> impl)
+ : LayerProperties(std::move(impl)) {}
+};
+
} // namespace style
} // namespace mbgl