summaryrefslogtreecommitdiff
path: root/platform/android/src/style/functions/categorical_stops.hpp
blob: a198c8d5c9a2cab3016c45274b11339cdaa21fcd (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 <mbgl/util/noncopyable.hpp>
#include <jni/jni.hpp>

#include "stop.hpp"

namespace mbgl {
namespace android {

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

    static jni::Object<CategoricalStops> New(jni::JNIEnv&, jni::Array<jni::Object<Stop>>);

    static jni::Class<CategoricalStops> javaClass;

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

} // namespace android
} // namespace mbgl