summaryrefslogtreecommitdiff
path: root/include/mbgl/style/sources/raster_source.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/sources/raster_source.hpp')
-rw-r--r--include/mbgl/style/sources/raster_source.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mbgl/style/sources/raster_source.hpp b/include/mbgl/style/sources/raster_source.hpp
index 9bb951992c..395f25e51d 100644
--- a/include/mbgl/style/sources/raster_source.hpp
+++ b/include/mbgl/style/sources/raster_source.hpp
@@ -11,9 +11,12 @@ class RasterSource : public Source {
public:
RasterSource(std::string id, variant<std::string, Tileset> urlOrTileset, uint16_t tileSize);
+ optional<std::string> getURL() const;
+
// Private implementation
class Impl;
+ Impl* const impl;
};
template <>