libvips/python/vipsCC/VError.i

20 lines
269 B
OpenEdge ABL
Raw Normal View History

2007-08-29 18:23:50 +02:00
/* SWIG interface file for VError.
*/
%module VError
%{
#include <vips/vipscpp.h>
%}
%include "std_except.i"
%include "std_string.i"
%include vips/VError.h
2008-02-11 19:18:53 +01:00
%extend vips::VError {
const char *__str__ () {
return $self->what ();
}
}