summaryrefslogtreecommitdiff
path: root/include/mbgl
diff options
context:
space:
mode:
authorJulian Rex <julian.rex@mapbox.com>2019-09-27 13:09:13 -0400
committerJulian Rex <julian.rex@mapbox.com>2019-09-27 13:09:13 -0400
commit7d5006ddcf99eddd4a399b27a1e691deaf3c80b1 (patch)
tree7f9fa45eee7f75c0de1164c8edf08d86ae1d8b6a /include/mbgl
parent9c02ac377f49e0271c11daa69863dad1b094529e (diff)
downloadqtlocation-mapboxgl-7d5006ddcf99eddd4a399b27a1e691deaf3c80b1.tar.gz
Diffstat (limited to 'include/mbgl')
-rw-r--r--include/mbgl/style/layers/hillshade_layer.hpp1
-rw-r--r--include/mbgl/style/layers/layer.hpp.ejs2
-rw-r--r--include/mbgl/style/layers/line_layer.hpp2
-rw-r--r--include/mbgl/style/layers/raster_layer.hpp2
-rw-r--r--include/mbgl/style/light.hpp.ejs3
5 files changed, 5 insertions, 5 deletions
diff --git a/include/mbgl/style/layers/hillshade_layer.hpp b/include/mbgl/style/layers/hillshade_layer.hpp
index e4e77100a3..5c392c4915 100644
--- a/include/mbgl/style/layers/hillshade_layer.hpp
+++ b/include/mbgl/style/layers/hillshade_layer.hpp
@@ -15,7 +15,6 @@ namespace style {
class TransitionOptions;
-
class MBGL_EXPORT HillshadeLayer : public Layer {
public:
HillshadeLayer(const std::string& layerID, const std::string& sourceID);
diff --git a/include/mbgl/style/layers/layer.hpp.ejs b/include/mbgl/style/layers/layer.hpp.ejs
index 7b60fcf6ea..2538708b5d 100644
--- a/include/mbgl/style/layers/layer.hpp.ejs
+++ b/include/mbgl/style/layers/layer.hpp.ejs
@@ -27,7 +27,7 @@ namespace style {
class TransitionOptions;
-class <%- camelize(type) %>Layer : public Layer {
+class MBGL_EXPORT <%- camelize(type) %>Layer : public Layer {
public:
<% if (type === 'background') { -%>
<%- camelize(type) %>Layer(const std::string& layerID);
diff --git a/include/mbgl/style/layers/line_layer.hpp b/include/mbgl/style/layers/line_layer.hpp
index fd3d4f6a94..2b4e523fbd 100644
--- a/include/mbgl/style/layers/line_layer.hpp
+++ b/include/mbgl/style/layers/line_layer.hpp
@@ -18,7 +18,7 @@ namespace style {
class TransitionOptions;
-class MBGL_EXPORT LineLayer : public Layer {
+class MBGL_EXPORT LineLayer : public Layer {
public:
LineLayer(const std::string& layerID, const std::string& sourceID);
~LineLayer() final;
diff --git a/include/mbgl/style/layers/raster_layer.hpp b/include/mbgl/style/layers/raster_layer.hpp
index 7b59d5cc1e..711b77f328 100644
--- a/include/mbgl/style/layers/raster_layer.hpp
+++ b/include/mbgl/style/layers/raster_layer.hpp
@@ -15,7 +15,7 @@ namespace style {
class TransitionOptions;
-class MBGL_EXPORT RasterLayer : public Layer {
+class MBGL_EXPORT RasterLayer : public Layer {
public:
RasterLayer(const std::string& layerID, const std::string& sourceID);
~RasterLayer() final;
diff --git a/include/mbgl/style/light.hpp.ejs b/include/mbgl/style/light.hpp.ejs
index e4661dc59b..829e782022 100644
--- a/include/mbgl/style/light.hpp.ejs
+++ b/include/mbgl/style/light.hpp.ejs
@@ -13,13 +13,14 @@
#include <mbgl/style/transition_options.hpp>
#include <mbgl/style/types.hpp>
#include <mbgl/util/immutable.hpp>
+#include <mbgl/util/util.hpp>
namespace mbgl {
namespace style {
class LightObserver;
-class Light {
+class MBGL_EXPORT Light {
public:
Light();
~Light();