mirror of
https://github.com/eclipse/upm.git
synced 2025-12-16 13:54:40 +03:00
21 lines
393 B
OpenEdge ABL
21 lines
393 B
OpenEdge ABL
// Include doxygen-generated documentation
|
|
%include "pyupm_doxy2swig.i"
|
|
%module pyupm_mma7660
|
|
%include "../upm.i"
|
|
%include "cpointer.i"
|
|
|
|
/* Send "int *" and "float *" to python as intp and floatp */
|
|
%pointer_functions(int, intp);
|
|
%pointer_functions(float, floatp);
|
|
|
|
%feature("autodoc", "3");
|
|
|
|
#ifdef DOXYGEN
|
|
%include "mma7660_doc.i"
|
|
#endif
|
|
|
|
%include "mma7660.h"
|
|
%{
|
|
#include "mma7660.h"
|
|
%}
|