Files
ANSLibs/swig-4.3.0/Examples/python/import_template/foo.i

11 lines
98 B
OpenEdge ABL
Raw Normal View History

%module foo
%{
#include "foo.h"
%}
%import base.i
%include "foo.h"
%template(intFoo) Foo<int>;