Signed-off-by: Serban Waltter <serban.waltter@rinftech.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
25 lines
498 B
OpenEdge ABL
25 lines
498 B
OpenEdge ABL
#ifdef SWIGPYTHON
|
|
%module (package="upm") htu21d
|
|
#endif
|
|
|
|
%import "interfaces/interfaces.i"
|
|
|
|
%include "../common_top.i"
|
|
|
|
/* BEGIN Java syntax ------------------------------------------------------- */
|
|
#ifdef SWIGJAVA
|
|
%typemap(javaimports) SWIGTYPE %{
|
|
import upm_interfaces.*;
|
|
%}
|
|
|
|
JAVA_JNI_LOADLIBRARY(javaupm_abp)
|
|
#endif
|
|
/* END Java syntax */
|
|
|
|
/* BEGIN Common SWIG syntax ------------------------------------------------- */
|
|
%{
|
|
#include "abp.hpp"
|
|
%}
|
|
%include "abp.hpp"
|
|
/* END Common SWIG syntax */
|