Removed old interfaces C++ examples. Signed-off-by: Serban Waltter <serban.waltter@rinftech.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
27 lines
565 B
OpenEdge ABL
27 lines
565 B
OpenEdge ABL
#ifdef SWIGPYTHON
|
|
%module (package="upm") htu21d
|
|
#endif
|
|
|
|
%import "interfaces/new_interfaces.i"
|
|
|
|
%include "../common_top.i"
|
|
|
|
/* BEGIN Java syntax ------------------------------------------------------- */
|
|
#ifdef SWIGJAVA
|
|
%typemap(javaimports) SWIGTYPE %{
|
|
import upm_new_interfaces.*;
|
|
%}
|
|
|
|
JAVA_JNI_LOADLIBRARY(javaupm_bh1750)
|
|
#endif
|
|
/* END Java syntax */
|
|
|
|
/* BEGIN Common SWIG syntax ------------------------------------------------- */
|
|
%{
|
|
#include "bh1750_defs.h"
|
|
#include "bh1750.hpp"
|
|
%}
|
|
%include "bh1750_defs.h"
|
|
%include "bh1750.hpp"
|
|
/* END Common SWIG syntax */
|