summaryrefslogtreecommitdiff
path: root/src/mbgl/style/sources/vector_source_impl.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/vector_source_impl.hpp
parent19158d9f01909bf566616524f23e0acb635562f7 (diff)
downloadqtlocation-mapboxgl-900568cfb0b84a298395f4d84488fd9323552c63.tar.gz
[core] Runtime source API: private impls
Diffstat (limited to 'src/mbgl/style/sources/vector_source_impl.hpp')
-rw-r--r--src/mbgl/style/sources/vector_source_impl.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mbgl/style/sources/vector_source_impl.hpp b/src/mbgl/style/sources/vector_source_impl.hpp
new file mode 100644
index 0000000000..4a6703e5c0
--- /dev/null
+++ b/src/mbgl/style/sources/vector_source_impl.hpp
@@ -0,0 +1,20 @@
+#pragma once
+
+#include <mbgl/style/sources/vector_source.hpp>
+#include <mbgl/style/tile_source_impl.hpp>
+
+namespace mbgl {
+namespace style {
+
+class VectorSource::Impl : public TileSourceImpl {
+public:
+ static std::unique_ptr<VectorSource> parse(std::string id, const JSValue&);
+
+ Impl(std::string id, Source&, variant<std::string, Tileset>);
+
+private:
+ std::unique_ptr<Tile> createTile(const OverscaledTileID&, const UpdateParameters&) final;
+};
+
+} // namespace style
+} // namespace mbgl