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

#include <mbgl/map/map.hpp>
#include <mbgl/style/source.hpp>

#include "source.hpp"

#include <jni/jni.hpp>

namespace mbgl {
namespace android {

    mbgl::android::Source* initializeSourcePeer(mbgl::Map&, mbgl::style::Source&);

    jni::jobject* createJavaSourcePeer(jni::JNIEnv&, mbgl::Map&, mbgl::style::Source&);

    void registerNativeSources(jni::JNIEnv&);

}
}