mirror of https://github.com/swig/swig
18 lines
288 B
OpenEdge ABL
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>;
|
|
|