summaryrefslogtreecommitdiff
path: root/src/mbgl/style/light_observer.hpp
diff options
context:
space:
mode:
authorIvo van Dongen <info@ivovandongen.nl>2017-05-04 19:21:08 +0300
committerIvo van Dongen <ivovandongen@users.noreply.github.com>2017-05-08 19:39:55 +0300
commit6fd40867d67eb3758c0eb8eca184ed9d7b9da5b0 (patch)
tree36fede4f7dfeb01a6835f53a185dad47f3153481 /src/mbgl/style/light_observer.hpp
parentfeae5e22ee4910a1508f2120c8131b2f8531bae8 (diff)
downloadqtlocation-mapboxgl-6fd40867d67eb3758c0eb8eca184ed9d7b9da5b0.tar.gz
[core] delegate light changes to render light
Diffstat (limited to 'src/mbgl/style/light_observer.hpp')
-rw-r--r--src/mbgl/style/light_observer.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/mbgl/style/light_observer.hpp b/src/mbgl/style/light_observer.hpp
new file mode 100644
index 0000000000..751a84850d
--- /dev/null
+++ b/src/mbgl/style/light_observer.hpp
@@ -0,0 +1,16 @@
+#pragma once
+
+#include <mbgl/style/light.hpp>
+
+namespace mbgl {
+namespace style {
+
+class LightObserver {
+public:
+ virtual ~LightObserver() = default;
+
+ virtual void onLightChanged(const Light&) {}
+};
+
+} // namespace style
+} // namespace mbgl