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

#include "json_element.hpp"

#include <jni/jni.hpp>

namespace mbgl {
namespace android {
namespace gson {

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

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

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