summaryrefslogtreecommitdiff
path: root/peripheral/libupm/src/tcs3414cs/javaupm_tcs3414cs.i
blob: 1389d3f51a330210678c63ee3b56993fc8ed73df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%module javaupm_tcs3414cs
%include "../upm.i"

%{
    #include "tcs3414cs.hpp"
%}

%include "tcs3414cs.hpp"

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