summaryrefslogtreecommitdiff
path: root/platform/android/src/style/style.hpp
blob: 6c80c72bcabc9834a9cae9336018c72ad1fd57d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#pragma once

#include <mbgl/style/style.hpp>

#include <jni/jni.hpp>

namespace mbgl {
namespace android {

/**
 * Peer class for the Android Style holder.
 */
class Style {
public:

    // TODO move to style package
    static constexpr auto Name() { return "com/mapbox/mapboxsdk/maps/Style"; };

    Style(jni::JNIEnv &);

    ~Style();

    static jni::Class<Style> javaClass;

    // TODO add methods
    static void registerNative(jni::JNIEnv &);

private:

};

}
}