swig/SWIG/Examples/test-suite/overload_rename.i
Marcelo Matus bebc53f9a2 fix typo
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6733 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2004-11-15 22:15:32 +00:00

28 lines
290 B
OpenEdge ABL

%module overload_rename
%{
class Foo {
public:
Foo(float a, float b=1.0)
{
}
Foo(float a, int c, float b=1.0)
{
}
};
%}
%rename(Foo_int) Foo::Foo(float a, int c, float b=1.0);
class Foo {
public:
Foo(float a, float b=1.0);
Foo(float a, int c, float b=1.0);
};