summaryrefslogtreecommitdiff
path: root/src/mbgl/tile/vector_tile_data.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-06-06 17:44:00 -0700
committerKonstantin Käfer <mail@kkaefer.com>2016-06-10 12:42:14 +0200
commit8d8d03a451a6a0ef1a57523274d32ddca0a52de0 (patch)
treecd36a184801f77fea7e000b6a408bc2510c10c05 /src/mbgl/tile/vector_tile_data.hpp
parent91ddcbce20b69ae4b5615723670fe0f310a528e3 (diff)
downloadqtlocation-mapboxgl-8d8d03a451a6a0ef1a57523274d32ddca0a52de0.tar.gz
[core] Merge VectorTileSource into VectorTileData
Diffstat (limited to 'src/mbgl/tile/vector_tile_data.hpp')
-rw-r--r--src/mbgl/tile/vector_tile_data.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mbgl/tile/vector_tile_data.hpp b/src/mbgl/tile/vector_tile_data.hpp
index e3b0034f3a..d7a14314d2 100644
--- a/src/mbgl/tile/vector_tile_data.hpp
+++ b/src/mbgl/tile/vector_tile_data.hpp
@@ -6,6 +6,7 @@ namespace mbgl {
class Tileset;
class TileSource;
+class GeometryTile;
namespace style {
class UpdateParameters;
@@ -21,6 +22,8 @@ public:
void setNecessity(Necessity) final;
+ static std::unique_ptr<GeometryTile> parseData(std::shared_ptr<const std::string>);
+
private:
std::unique_ptr<TileSource> tileSource;
};