mirror of
https://github.com/eclipse/upm.git
synced 2025-07-03 02:11:15 +03:00

Removed old interfaces C++ examples. Signed-off-by: Serban Waltter <serban.waltter@rinftech.com>
27 lines
536 B
OpenEdge ABL
27 lines
536 B
OpenEdge ABL
#ifdef SWIGPYTHON
|
|
%module (package="upm") ehr
|
|
#endif
|
|
|
|
%import "interfaces/new_interfaces.i"
|
|
|
|
%include "../common_top.i"
|
|
|
|
/* BEGIN Java syntax ------------------------------------------------------- */
|
|
#ifdef SWIGJAVA
|
|
%typemap(javaimports) SWIGTYPE %{
|
|
import upm_new_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 */
|