upm/src/groveehr/groveehr.i
Serban Waltter 5f9bebad14 Removed old interfaces and replaced them with the new ones.
Signed-off-by: Serban Waltter <serban.waltter@rinftech.com>
2018-10-11 17:55:25 +03:00

27 lines
528 B
OpenEdge ABL

#ifdef SWIGPYTHON
%module (package="upm") ehr
#endif
%import "interfaces/interfaces.i"
%include "../common_top.i"
/* BEGIN Java syntax ------------------------------------------------------- */
#ifdef SWIGJAVA
%typemap(javaimports) SWIGTYPE %{
import upm_interfaces.*;
%}
%ignore beatISR;
JAVA_JNI_LOADLIBRARY(javaupm_groveehr)
#endif
/* END Java syntax */
/* BEGIN Common SWIG syntax ------------------------------------------------- */
%{
#include "groveehr.hpp"
%}
%include "groveehr.hpp"
/* END Common SWIG syntax */