#pragma once #include "json_element.hpp" #include namespace mbgl { namespace android { namespace gson { class JsonObject { public: using SuperTag = JsonElement; static constexpr auto Name() { return "com/google/gson/JsonObject"; }; static jni::Local> New(jni::JNIEnv&, const mbgl::PropertyMap&); static mbgl::PropertyMap convert(JNIEnv&, const jni::Object&); static void registerNative(jni::JNIEnv&); }; } // namespace gson } // namespace android } // namespace mbgl