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

#include "json_element.hpp"

#include <jni/jni.hpp>

namespace mbgl {
namespace android {
namespace gson {

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

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

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

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