11 lines
98 B
OpenEdge ABL
11 lines
98 B
OpenEdge ABL
%module foo
|
|
%{
|
|
#include "foo.h"
|
|
%}
|
|
|
|
%import base.i
|
|
%include "foo.h"
|
|
|
|
%template(intFoo) Foo<int>;
|
|
|