13 lines
151 B
OpenEdge ABL
13 lines
151 B
OpenEdge ABL
%module operbool
|
|
|
|
%rename(operator_bool) operator bool();
|
|
|
|
%inline %{
|
|
class Test {
|
|
public:
|
|
operator bool() {
|
|
return false;
|
|
}
|
|
};
|
|
%}
|