summaryrefslogtreecommitdiff
path: root/platform/android/src/style/style.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/src/style/style.hpp')
-rw-r--r--platform/android/src/style/style.hpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/platform/android/src/style/style.hpp b/platform/android/src/style/style.hpp
new file mode 100644
index 0000000000..6c80c72bca
--- /dev/null
+++ b/platform/android/src/style/style.hpp
@@ -0,0 +1,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:
+
+};
+
+}
+} \ No newline at end of file