Files
upm/src/max31855/javaupm_max31855.i

21 lines
418 B
OpenEdge ABL
Raw Normal View History

//! [Interesting]
%module javaupm_max31855
%include "../upm.i"
%{
#include "max31855.hpp"
%}
%include "max31855.hpp"
//! [Interesting]
%pragma(java) jniclasscode=%{
static {
try {
System.loadLibrary("javaupm_max31855");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. \n" + e);
System.exit(1);
}
}
%}