summaryrefslogtreecommitdiff
path: root/include/mbgl/style/layers/symbol_layer.hpp
diff options
context:
space:
mode:
authorMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2020-03-18 16:46:24 +0200
committerMikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com>2020-03-24 20:53:55 +0200
commit280b80677797ceda07ddf75f567dd3613f285319 (patch)
treeef1eef74a7c17677fdff50dbf4bbbb8452b5ce0f /include/mbgl/style/layers/symbol_layer.hpp
parent99dbb3eed50f1b89d23604916cee6de965e1f4cb (diff)
downloadqtlocation-mapboxgl-280b80677797ceda07ddf75f567dd3613f285319.tar.gz
[core] Move generic setProperty() parts to the base Layer class
Diffstat (limited to 'include/mbgl/style/layers/symbol_layer.hpp')
-rw-r--r--include/mbgl/style/layers/symbol_layer.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/mbgl/style/layers/symbol_layer.hpp b/include/mbgl/style/layers/symbol_layer.hpp
index 2cffd2294a..40d16dedf3 100644
--- a/include/mbgl/style/layers/symbol_layer.hpp
+++ b/include/mbgl/style/layers/symbol_layer.hpp
@@ -22,12 +22,6 @@ public:
SymbolLayer(const std::string& layerID, const std::string& sourceID);
~SymbolLayer() final;
- // Dynamic properties
- optional<conversion::Error> setProperty(const std::string& name, const conversion::Convertible& value) final;
-
- StyleProperty getProperty(const std::string& name) const final;
- Value serialize() const final;
-
// Layout properties
static PropertyValue<bool> getDefaultIconAllowOverlap();
@@ -290,6 +284,12 @@ public:
std::unique_ptr<Layer> cloneRef(const std::string& id) const final;
protected:
+ // Dynamic properties
+ optional<conversion::Error> setPropertyInternal(const std::string& name, const conversion::Convertible& value) final;
+
+ StyleProperty getProperty(const std::string& name) const final;
+ Value serialize() const final;
+
Mutable<Layer::Impl> mutableBaseImpl() const final;
};