#pragma once #include #include namespace mbgl { namespace android { class PointF : private mbgl::util::noncopyable { public: static constexpr auto Name() { return "android/graphics/PointF"; }; static jni::Local> New(jni::JNIEnv&, float, float); static mbgl::ScreenCoordinate getScreenCoordinate(jni::JNIEnv&, const jni::Object&); static void registerNative(jni::JNIEnv&); }; } // namespace android } // namespace mbgl