swig/Examples/test-suite/exception_classname.i
2016-05-14 21:32:24 +01:00

13 lines
201 B
OpenEdge ABL

%module exception_classname
%warnfilter(SWIGWARN_RUBY_WRONG_NAME);
#ifdef SWIGPHP
%rename(ExceptionClass) Exception;
#endif
%inline %{
class Exception {
public:
int testfunc() { return 42; }
};
%}