forked from rave-package/rave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrave_vcbuild.i
49 lines (42 loc) · 1.09 KB
/
rave_vcbuild.i
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Python & Java convenience
%{
#include "vcconfig.h"
#include <sstream>
%}
%include "vcconfig.h"
%define STRINGHELPER(classname)
%extend classname {
char * toString() {
static char temp[512];
std::ostringstream os;
os << (*self);
strcpy_s(temp, os.str().c_str());
return &temp[0];
}
std::string __str__() {
static char temp[512];
std::ostringstream os;
os << (*self);
strcpy_s(temp, os.str().c_str());
return &temp[0];
}
};
%enddef // STRINGHELPER
%include "rave.i"
%pragma(java) jniclasscode = %{
static {
// String libname = System.mapLibraryName( "rave" );
String libname = "Rave";
System.out.println( "Trying to load " + libname + " ..." );
try {
System.loadLibrary ( libname );
System.out.println( libname + " successfully loaded!" );
} catch( SecurityException e ) {
System.out.println( libname + " not loaded!" );
e.printStackTrace();
} catch(UnsatisfiedLinkError e) {
System.out.println( libname + " not loaded!" );
e.printStackTrace();
}
}
%}