#pragma once #include #include #include #include #include namespace mbgl { namespace android { class LatLngQuad : private mbgl::util::noncopyable { public: static constexpr auto Name() { return "com/mapbox/mapboxsdk/geometry/LatLngQuad"; }; static jni::Object New(jni::JNIEnv&, std::array); static std::array getLatLngArray(jni::JNIEnv&, jni::Object); static jni::Class javaClass; static void registerNative(jni::JNIEnv&); }; } // namespace android } // namespace mbgl