Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/exception_classname.i
2019-08-04 21:38:19 -05:00

14 lines
225 B
OpenEdge ABL

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