mirror of
https://github.com/eclipse/upm.git
synced 2025-03-26 02:10:02 +03:00
27 lines
528 B
OpenEdge ABL
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 */
|