blob: 5def2836d2160429032765dbd764d62ba23ccb49 [file] [log] [blame]
%module javaupm_groveelectromagnet
%include "../upm.i"
%{
#include "groveelectromagnet.h"
%}
%include "groveelectromagnet.h"
%pragma(java) jniclasscode=%{
static {
try {
System.loadLibrary("javaupm_groveelectromagnet");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. \n" + e);
System.exit(1);
}
}
%}