swig/Examples/test-suite/constructor_rename.i
2010-04-25 14:07:14 +00:00

12 lines
132 B
OpenEdge ABL

%module constructor_rename
%{
struct Foo {
Foo() {}
};
%}
struct Foo {
%rename(RenamedConstructor) Foo();
Foo() {}
};