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

#include <mbgl/util/noncopyable.hpp>

#include <jni/jni.hpp>

namespace mbgl {
namespace android {

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

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

} // namespace android
} // namespace mbgl