upm/src/linefinder/javaupm_linefinder.i
Abhishek Malik ac5e54cfb6 LineFinder: Created LineFinder from GroveLineFinder
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
2016-09-14 14:09:26 -07:00

19 lines
390 B
OpenEdge ABL

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