From 7d5006ddcf99eddd4a399b27a1e691deaf3c80b1 Mon Sep 17 00:00:00 2001 From: Julian Rex Date: Fri, 27 Sep 2019 13:09:13 -0400 Subject: [ios] Update ejs files. --- include/mbgl/style/layers/hillshade_layer.hpp | 1 - include/mbgl/style/layers/layer.hpp.ejs | 2 +- include/mbgl/style/layers/line_layer.hpp | 2 +- include/mbgl/style/layers/raster_layer.hpp | 2 +- include/mbgl/style/light.hpp.ejs | 3 ++- src/mbgl/style/layers/background_layer_properties.hpp | 2 +- src/mbgl/style/layers/circle_layer_properties.hpp | 2 +- src/mbgl/style/layers/fill_extrusion_layer_properties.hpp | 2 +- src/mbgl/style/layers/fill_layer_properties.hpp | 2 +- src/mbgl/style/layers/heatmap_layer_properties.hpp | 2 +- src/mbgl/style/layers/hillshade_layer_properties.hpp | 2 +- src/mbgl/style/layers/layer_properties.hpp.ejs | 2 +- src/mbgl/style/layers/line_layer_properties.hpp | 2 +- src/mbgl/style/layers/raster_layer_properties.hpp | 2 +- src/mbgl/style/layers/symbol_layer_properties.hpp | 1 - 15 files changed, 14 insertions(+), 15 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 #include #include +#include namespace mbgl { namespace style { class LightObserver; -class Light { +class MBGL_EXPORT Light { public: Light(); ~Light(); diff --git a/src/mbgl/style/layers/background_layer_properties.hpp b/src/mbgl/style/layers/background_layer_properties.hpp index 11328f78bb..ffd64ad938 100644 --- a/src/mbgl/style/layers/background_layer_properties.hpp +++ b/src/mbgl/style/layers/background_layer_properties.hpp @@ -34,7 +34,7 @@ class BackgroundPaintProperties : public Properties< BackgroundPattern > {}; -class BackgroundLayerProperties final : public LayerProperties { +class MBGL_EXPORT BackgroundLayerProperties final : public LayerProperties { public: explicit BackgroundLayerProperties(Immutable); BackgroundLayerProperties( diff --git a/src/mbgl/style/layers/circle_layer_properties.hpp b/src/mbgl/style/layers/circle_layer_properties.hpp index a5f7a584df..701a59305c 100644 --- a/src/mbgl/style/layers/circle_layer_properties.hpp +++ b/src/mbgl/style/layers/circle_layer_properties.hpp @@ -74,7 +74,7 @@ class CirclePaintProperties : public Properties< CircleTranslateAnchor > {}; -class CircleLayerProperties final : public LayerProperties { +class MBGL_EXPORT CircleLayerProperties final : public LayerProperties { public: explicit CircleLayerProperties(Immutable); CircleLayerProperties( diff --git a/src/mbgl/style/layers/fill_extrusion_layer_properties.hpp b/src/mbgl/style/layers/fill_extrusion_layer_properties.hpp index 6936d5e0c4..9c24801d77 100644 --- a/src/mbgl/style/layers/fill_extrusion_layer_properties.hpp +++ b/src/mbgl/style/layers/fill_extrusion_layer_properties.hpp @@ -59,7 +59,7 @@ class FillExtrusionPaintProperties : public Properties< FillExtrusionVerticalGradient > {}; -class FillExtrusionLayerProperties final : public LayerProperties { +class MBGL_EXPORT FillExtrusionLayerProperties final : public LayerProperties { public: explicit FillExtrusionLayerProperties(Immutable); FillExtrusionLayerProperties( diff --git a/src/mbgl/style/layers/fill_layer_properties.hpp b/src/mbgl/style/layers/fill_layer_properties.hpp index 38ca506199..4fbb55e661 100644 --- a/src/mbgl/style/layers/fill_layer_properties.hpp +++ b/src/mbgl/style/layers/fill_layer_properties.hpp @@ -54,7 +54,7 @@ class FillPaintProperties : public Properties< FillTranslateAnchor > {}; -class FillLayerProperties final : public LayerProperties { +class MBGL_EXPORT FillLayerProperties final : public LayerProperties { public: explicit FillLayerProperties(Immutable); FillLayerProperties( diff --git a/src/mbgl/style/layers/heatmap_layer_properties.hpp b/src/mbgl/style/layers/heatmap_layer_properties.hpp index 089560276d..358ebda9fc 100644 --- a/src/mbgl/style/layers/heatmap_layer_properties.hpp +++ b/src/mbgl/style/layers/heatmap_layer_properties.hpp @@ -43,7 +43,7 @@ class HeatmapPaintProperties : public Properties< HeatmapWeight > {}; -class HeatmapLayerProperties final : public LayerProperties { +class MBGL_EXPORT HeatmapLayerProperties final : public LayerProperties { public: explicit HeatmapLayerProperties(Immutable); HeatmapLayerProperties( diff --git a/src/mbgl/style/layers/hillshade_layer_properties.hpp b/src/mbgl/style/layers/hillshade_layer_properties.hpp index 745749b198..d5944484ab 100644 --- a/src/mbgl/style/layers/hillshade_layer_properties.hpp +++ b/src/mbgl/style/layers/hillshade_layer_properties.hpp @@ -49,7 +49,7 @@ class HillshadePaintProperties : public Properties< HillshadeShadowColor > {}; -class HillshadeLayerProperties final : public LayerProperties { +class MBGL_EXPORT HillshadeLayerProperties final : public LayerProperties { public: explicit HillshadeLayerProperties(Immutable); HillshadeLayerProperties( diff --git a/src/mbgl/style/layers/layer_properties.hpp.ejs b/src/mbgl/style/layers/layer_properties.hpp.ejs index af67f14b90..ce1e0c4049 100644 --- a/src/mbgl/style/layers/layer_properties.hpp.ejs +++ b/src/mbgl/style/layers/layer_properties.hpp.ejs @@ -63,7 +63,7 @@ class <%- camelize(type) %>PaintProperties : public Properties< <%- camelize(paintProperties.slice(-1)[0].name) %> > {}; -class <%- camelize(type) %>LayerProperties final : public LayerProperties { +class MBGL_EXPORT <%- camelize(type) %>LayerProperties final : public LayerProperties { public: explicit <%- camelize(type) %>LayerProperties(Immutable<<%- camelize(type) %>Layer::Impl>); <%- camelize(type) %>LayerProperties( diff --git a/src/mbgl/style/layers/line_layer_properties.hpp b/src/mbgl/style/layers/line_layer_properties.hpp index 2ecbb10993..26e792d4a6 100644 --- a/src/mbgl/style/layers/line_layer_properties.hpp +++ b/src/mbgl/style/layers/line_layer_properties.hpp @@ -106,7 +106,7 @@ class LinePaintProperties : public Properties< LineWidth > {}; -class LineLayerProperties final : public LayerProperties { +class MBGL_EXPORT LineLayerProperties final : public LayerProperties { public: explicit LineLayerProperties(Immutable); LineLayerProperties( diff --git a/src/mbgl/style/layers/raster_layer_properties.hpp b/src/mbgl/style/layers/raster_layer_properties.hpp index 889e24f041..5481e5b4d3 100644 --- a/src/mbgl/style/layers/raster_layer_properties.hpp +++ b/src/mbgl/style/layers/raster_layer_properties.hpp @@ -59,7 +59,7 @@ class RasterPaintProperties : public Properties< RasterSaturation > {}; -class RasterLayerProperties final : public LayerProperties { +class MBGL_EXPORT RasterLayerProperties final : public LayerProperties { public: explicit RasterLayerProperties(Immutable); RasterLayerProperties( diff --git a/src/mbgl/style/layers/symbol_layer_properties.hpp b/src/mbgl/style/layers/symbol_layer_properties.hpp index a0393c4359..ee897f14fd 100644 --- a/src/mbgl/style/layers/symbol_layer_properties.hpp +++ b/src/mbgl/style/layers/symbol_layer_properties.hpp @@ -12,7 +12,6 @@ #include #include #include -#include namespace mbgl { namespace style { -- cgit v1.2.1