Files

15 lines
197 B
OpenEdge ABL
Raw Permalink Normal View History

%module conversion_namespace
%rename(toFoo) oss::Bar::operator Foo();
%inline %{
namespace oss
{
struct Foo {
};
struct Bar {
operator Foo () { return Foo(); }
};
}
%}