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

#include "conversion.hpp"

#include <jni/jni.hpp>

#include <vector>

namespace mbgl {
namespace android {
namespace conversion {

std::vector<std::string> toVector(JNIEnv& env, const jni::Array<jni::String>& array);
jni::Local<jni::Array<jni::String>> toArray(JNIEnv& env, const std::vector<std::string>&);

}
}
}