25 lines
505 B
C++
25 lines
505 B
C++
#include <jni.h>
|
|
#include <jlilv_LilvScalePoint.h>
|
|
|
|
#include <lilv/lilv.h>
|
|
#include <stdio.h>
|
|
/*
|
|
* Class: jlilv_LilvScalePoint
|
|
* Method: getLabel
|
|
* Signature: ()Ljlilv/LilvNode;
|
|
*/
|
|
JNIEXPORT jobject JNICALL Java_jlilv_LilvScalePoint_getLabel
|
|
(JNIEnv* env, jobject obj){
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* Class: jlilv_LilvScalePoint
|
|
* Method: getValue
|
|
* Signature: ()Ljlilv/LilvNode;
|
|
*/
|
|
JNIEXPORT jobject JNICALL Java_jlilv_LilvScalePoint_getValue
|
|
(JNIEnv* env, jobject obj){
|
|
return NULL;
|
|
}
|