summaryrefslogtreecommitdiff
path: root/src/mbgl/style/sources/raster_source.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-06-14 16:07:21 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-06-16 13:27:15 -0700
commit900568cfb0b84a298395f4d84488fd9323552c63 (patch)
treee2c315656ca57a07ba48e38df5743fb05debb115 /src/mbgl/style/sources/raster_source.hpp
parent19158d9f01909bf566616524f23e0acb635562f7 (diff)
downloadqtlocation-mapboxgl-900568cfb0b84a298395f4d84488fd9323552c63.tar.gz
[core] Runtime source API: private impls
Diffstat (limited to 'src/mbgl/style/sources/raster_source.hpp')
-rw-r--r--src/mbgl/style/sources/raster_source.hpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/mbgl/style/sources/raster_source.hpp b/src/mbgl/style/sources/raster_source.hpp
deleted file mode 100644
index 27b2276df5..0000000000
--- a/src/mbgl/style/sources/raster_source.hpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#include <mbgl/style/tile_source.hpp>
-
-namespace mbgl {
-namespace style {
-
-class RasterSource : public TileSource {
-public:
- static std::unique_ptr<RasterSource> parse(std::string id, const JSValue&);
-
- RasterSource(std::string id, variant<std::string, Tileset>, uint16_t tileSize);
-
-private:
- std::unique_ptr<Tile> createTile(const OverscaledTileID&, const UpdateParameters&) final;
-};
-
-} // namespace style
-} // namespace mbgl