summaryrefslogtreecommitdiff
path: root/src/mbgl/style/sources/raster_source.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-06-14 10:43:28 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-06-14 11:25:45 -0700
commite6ba10ceed93c3b565a80591d8def5f0e7d72aac (patch)
treec9ffef66a318e06643acab1949440394fdf9bc54 /src/mbgl/style/sources/raster_source.hpp
parenteecf9e7d231f282ec4ecf989360106aa91263800 (diff)
downloadqtlocation-mapboxgl-e6ba10ceed93c3b565a80591d8def5f0e7d72aac.tar.gz
[core] Introduce shared base class for VectorSource and RasterSource
Diffstat (limited to 'src/mbgl/style/sources/raster_source.hpp')
-rw-r--r--src/mbgl/style/sources/raster_source.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/style/sources/raster_source.hpp b/src/mbgl/style/sources/raster_source.hpp
index abc203e3cb..4702052b77 100644
--- a/src/mbgl/style/sources/raster_source.hpp
+++ b/src/mbgl/style/sources/raster_source.hpp
@@ -1,11 +1,11 @@
#pragma once
-#include <mbgl/style/source.hpp>
+#include <mbgl/style/tile_source.hpp>
namespace mbgl {
namespace style {
-class RasterSource : public Source {
+class RasterSource : public TileSource {
public:
RasterSource(std::string id,
std::string url,