summaryrefslogtreecommitdiff
path: root/src/mbgl/tile/vector_tile_data.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-06-06 19:05:32 -0700
committerKonstantin Käfer <mail@kkaefer.com>2016-06-10 12:42:14 +0200
commit49120b1974edf744939f7801068dde612d79a4d7 (patch)
treed75181adb98fb849958a25c4816a95fefc772ec2 /src/mbgl/tile/vector_tile_data.hpp
parent94cfb1eb5aae9df9de128bfd57d2e934bb9b7e90 (diff)
downloadqtlocation-mapboxgl-49120b1974edf744939f7801068dde612d79a4d7.tar.gz
[core] Merge FileBasedTileSource and TileSource
Diffstat (limited to 'src/mbgl/tile/vector_tile_data.hpp')
-rw-r--r--src/mbgl/tile/vector_tile_data.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mbgl/tile/vector_tile_data.hpp b/src/mbgl/tile/vector_tile_data.hpp
index d7a14314d2..8e653386b8 100644
--- a/src/mbgl/tile/vector_tile_data.hpp
+++ b/src/mbgl/tile/vector_tile_data.hpp
@@ -1,11 +1,11 @@
#pragma once
#include <mbgl/tile/geometry_tile_data.hpp>
+#include <mbgl/tile/tile_source.hpp>
namespace mbgl {
class Tileset;
-class TileSource;
class GeometryTile;
namespace style {
@@ -25,7 +25,7 @@ public:
static std::unique_ptr<GeometryTile> parseData(std::shared_ptr<const std::string>);
private:
- std::unique_ptr<TileSource> tileSource;
+ TileSource<VectorTileData> tileSource;
};
} // namespace mbgl