blob: ed8c433ebe6bfdc51a4795053c7c9c47b60b77f5 [file] [log] [blame]
%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; }
};
%}