summaryrefslogtreecommitdiff
path: root/platform/android/src/gson/json_object.hpp
blob: b8916f8ae1fd72989a584ca6bf399cb7586d6aef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

#include "json_element.hpp"

#include <jni/jni.hpp>

namespace mbgl {
namespace android {
namespace gson {

class JsonObject {
public:
    using SuperTag = JsonElement;
    static constexpr auto Name() { return "com/google/gson/JsonObject"; };

    static jni::Local<jni::Object<JsonObject>> New(jni::JNIEnv&, const mbgl::PropertyMap&);
    static mbgl::PropertyMap convert(JNIEnv&, const jni::Object<JsonObject>&);

    static void registerNative(jni::JNIEnv&);
};

} // namespace gson
} // namespace android
} // namespace mbgl