blob: 1207aa1d358560b1705c5eab9a9adf2338efd393 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef NATIVEWRAPPER_H
#define NATIVEWRAPPER_H
#include <jni.h>
void *getNativeObject( JNIEnv *env, jobject qtcomponent );
void setNativeObject( JNIEnv *env, jobject qtcomponent, void *ptr );
#endif
|