Internally, handle function ref-qualifiers in the function decl type string. Needed for a whole host of things to work like %feature and %rename. Add %feature %rename and %ignore testing for ref-qualifiers.
22 lines
363 B
OpenEdge ABL
22 lines
363 B
OpenEdge ABL
%module cpp_refqualifier
|
|
|
|
%ignore Host::h_ignored;
|
|
%ignore Host::i_ignored() &&;
|
|
%ignore Host::j_ignored() const &&;
|
|
|
|
class Host {
|
|
public:
|
|
void h1() &;
|
|
void h2() const &;
|
|
void h3() &&;
|
|
void h4() const &&;
|
|
|
|
void h() &;
|
|
void h() const &;
|
|
void h() &&;
|
|
void h() const &&;
|
|
|
|
void h_ignored() &&;
|
|
void i_ignored() &&;
|
|
void j_ignored() const &&;
|
|
};
|