summaryrefslogtreecommitdiff
path: root/src/mbgl/style/parser.hpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-06-14 10:46:35 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-06-14 11:25:45 -0700
commit615a6685a47609310930890203f41815a5f19d48 (patch)
tree2f777fbe6d5e4d33453dbcb7d95d2f295bafa83c /src/mbgl/style/parser.hpp
parent2257ebf1c2297754960b4a1f1d5c3d25717c17db (diff)
downloadqtlocation-mapboxgl-615a6685a47609310930890203f41815a5f19d48.tar.gz
[core] Move GeoJSON-specific parsing into geojson_source.cpp
Diffstat (limited to 'src/mbgl/style/parser.hpp')
-rw-r--r--src/mbgl/style/parser.hpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mbgl/style/parser.hpp b/src/mbgl/style/parser.hpp
index 09e47a9997..e60a33b93f 100644
--- a/src/mbgl/style/parser.hpp
+++ b/src/mbgl/style/parser.hpp
@@ -13,20 +13,12 @@
#include <unordered_map>
#include <forward_list>
-namespace mapbox {
-namespace geojsonvt {
-class GeoJSONVT;
-} // namespace geojsonvt
-} // namespace mapbox
-
namespace mbgl {
namespace style {
std::unique_ptr<Tileset> parseTileJSON(const std::string& json, const std::string& sourceURL, SourceType, uint16_t tileSize);
std::unique_ptr<Tileset> parseTileJSON(const JSValue&);
-std::unique_ptr<mapbox::geojsonvt::GeoJSONVT> parseGeoJSON(const JSValue&);
-
Filter parseFilter(const JSValue&);
class Parser {