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

#include <mbgl/util/noncopyable.hpp>
#include <jni/jni.hpp>

namespace mbgl {
namespace android {

class IdentityStops : private mbgl::util::noncopyable {
public:
    static constexpr auto Name() { return "com/mapbox/mapboxsdk/style/functions/stops/IdentityStops"; };

    static jni::Object<IdentityStops> New(jni::JNIEnv&);

    static jni::Class<IdentityStops> javaClass;

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

} // namespace android
} // namespace mbgl