Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/java/doxygen/example.i
2019-08-04 21:38:19 -05:00

18 lines
288 B
OpenEdge ABL

%module example
%{
#include "example.h"
%}
%immutable NumSquares;
%immutable NumCircles;
%include "example.h"
/*! - this instantiation uses type int */
%template(RectangleInt) Rectangle<int>;
/*! - this instantiation uses type int */
%template(MakeRectangleInt) MakeRectangle<int>;