- Fixes generation of director method declarations containing C++11 ref-qualifiers. - Fixes generation of director method declarations returning more complex types such as const ref pointers. - Rewrite Swig_method_call to use more up to date code in the core.
16 lines
321 B
OpenEdge ABL
16 lines
321 B
OpenEdge ABL
%module(directors="1") cpp11_directors
|
|
%feature("director");
|
|
|
|
%inline %{
|
|
|
|
class Foo {
|
|
public:
|
|
virtual ~Foo() noexcept {}
|
|
virtual int ping() noexcept = 0;
|
|
virtual int pong() noexcept = 0;
|
|
virtual int pang() const& noexcept = 0;
|
|
virtual int peng() & noexcept = 0;
|
|
virtual int pung() & = 0;
|
|
};
|
|
|
|
%}
|