diff options
author | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2019-12-12 14:49:11 +0200 |
---|---|---|
committer | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2019-12-13 15:34:06 +0200 |
commit | 9901167936fa8fe13fa0f93a0604e86fc15b71cd (patch) | |
tree | 5d8d4568bfe8c50d93193bc07d341d7aa2e98122 /include | |
parent | 426f714c04f563c892f35e0f5dfd97137dc977d9 (diff) | |
download | qtlocation-mapboxgl-9901167936fa8fe13fa0f93a0604e86fc15b71cd.tar.gz |
[core] Add style::Layer(Impl) constructor
Diffstat (limited to 'include')
-rw-r--r-- | include/mbgl/style/light.hpp | 1 | ||||
-rw-r--r-- | include/mbgl/style/light.hpp.ejs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/mbgl/style/light.hpp b/include/mbgl/style/light.hpp index 7434fb2882..dc54f98075 100644 --- a/include/mbgl/style/light.hpp +++ b/include/mbgl/style/light.hpp @@ -51,6 +51,7 @@ public: class Impl; Immutable<Impl> impl; + explicit Light(Immutable<Impl>); Mutable<Impl> mutableImpl() const; LightObserver* observer = nullptr; diff --git a/include/mbgl/style/light.hpp.ejs b/include/mbgl/style/light.hpp.ejs index e4661dc59b..071647965d 100644 --- a/include/mbgl/style/light.hpp.ejs +++ b/include/mbgl/style/light.hpp.ejs @@ -38,6 +38,7 @@ public: <% } -%> class Impl; Immutable<Impl> impl; + explicit Light(Immutable<Impl>); Mutable<Impl> mutableImpl() const; LightObserver* observer = nullptr; |