Files

13 lines
132 B
OpenEdge ABL
Raw Permalink Normal View History

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