12 lines
310 B
OpenEdge ABL
12 lines
310 B
OpenEdge ABL
|
|
/* Include global UPM interface file */
|
||
|
|
%include "../upm.i"
|
||
|
|
|
||
|
|
%{
|
||
|
|
/* SWIG preprocessor copies this directly to the output wrapper*/
|
||
|
|
#include "sensortemplate.hpp"
|
||
|
|
%}
|
||
|
|
|
||
|
|
/* %include is a SWIG directive. SWIG will wrap types exposed in this
|
||
|
|
* header to the target language. */
|
||
|
|
%include "sensortemplate.hpp"
|