From 021d4199cb9ee754e9f0f5bc42f7f75285afd405 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Thu, 23 Jun 2016 12:00:25 -0700 Subject: [core, node] Implement bindings for addSource --- include/mbgl/util/geojson.hpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 include/mbgl/util/geojson.hpp (limited to 'include/mbgl/util/geojson.hpp') diff --git a/include/mbgl/util/geojson.hpp b/include/mbgl/util/geojson.hpp new file mode 100644 index 0000000000..3fd8c6ac4b --- /dev/null +++ b/include/mbgl/util/geojson.hpp @@ -0,0 +1,22 @@ +#pragma once + +#include + +namespace mapbox { +namespace geojsonvt { +class GeoJSONVT; +} // namespace geojsonvt +} // namespace mapbox + +namespace mbgl { + +class GeoJSON { +public: + GeoJSON(std::unique_ptr); + GeoJSON(GeoJSON&&); + ~GeoJSON(); + + std::unique_ptr impl; +}; + +} // namespace mbgl -- cgit v1.2.1