summaryrefslogtreecommitdiff
path: root/platform/android/src/geojson/geometry_collection.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/src/geojson/geometry_collection.hpp')
-rw-r--r--platform/android/src/geojson/geometry_collection.hpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/platform/android/src/geojson/geometry_collection.hpp b/platform/android/src/geojson/geometry_collection.hpp
deleted file mode 100644
index 9f02ac848d..0000000000
--- a/platform/android/src/geojson/geometry_collection.hpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#pragma once
-
-#include "geometry.hpp"
-
-#include <jni/jni.hpp>
-
-namespace mbgl {
-namespace android {
-namespace geojson {
-
-class GeometryCollection {
-public:
- using SuperTag = Geometry;
- static constexpr auto Name() { return "com/mapbox/geojson/GeometryCollection"; };
- static constexpr auto Type() { return "GeometryCollection"; };
-
- static jni::Local<jni::Object<GeometryCollection>> New(jni::JNIEnv&, const mapbox::geometry::geometry_collection<double>&);
-
- static mapbox::geometry::geometry_collection<double> convert(jni::JNIEnv&, const jni::Object<GeometryCollection>&);
-
- static void registerNative(jni::JNIEnv&);
-};
-
-} // namespace geojson
-} // namespace android
-} // namespace mbgl \ No newline at end of file