summaryrefslogtreecommitdiff
path: root/src/mbgl/tile/geojson_tile_data.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-06-06 16:19:28 -0700
committerKonstantin Käfer <mail@kkaefer.com>2016-06-10 12:42:14 +0200
commit908f3f083244dc264e8e6a6869c543d456b2b13c (patch)
tree4c35142f3c80ac7c7d844ce8dbfb6fabd79b3e47 /src/mbgl/tile/geojson_tile_data.hpp
parenta7cc291ce17bb2d4aa2b2d1fa481442926ec2566 (diff)
downloadqtlocation-mapboxgl-908f3f083244dc264e8e6a6869c543d456b2b13c.tar.gz
[core] Introduce GeometryTileData subclasses
Diffstat (limited to 'src/mbgl/tile/geojson_tile_data.hpp')
-rw-r--r--src/mbgl/tile/geojson_tile_data.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mbgl/tile/geojson_tile_data.hpp b/src/mbgl/tile/geojson_tile_data.hpp
new file mode 100644
index 0000000000..be1a38abe6
--- /dev/null
+++ b/src/mbgl/tile/geojson_tile_data.hpp
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <mbgl/tile/geometry_tile_data.hpp>
+
+namespace mbgl {
+
+class GeoJSONTileData : public GeometryTileData {
+public:
+ using GeometryTileData::GeometryTileData;
+};
+
+} // namespace mbgl