summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/urm37/javaupm_urm37.i
blob: 7d169749fe9d9e9b9e12746874564904b2353a48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%module javaupm_urm37
%include "../upm.i"
%include "std_string.i"

%{
    #include "urm37.hpp"
%}

%include "urm37.hpp"


%pragma(java) jniclasscode=%{
    static {
        try {
            System.loadLibrary("javaupm_urm37");
        } catch (UnsatisfiedLinkError e) {
            System.err.println("Native code library failed to load. \n" + e);
            System.exit(1);
        }
    }
%}