2009-08-16 17:00:08 +02:00
|
|
|
/* SWIG interface file for VError.
|
|
|
|
*/
|
|
|
|
|
|
|
|
%module VError
|
|
|
|
%{
|
2009-11-10 14:54:15 +01:00
|
|
|
#include <vips/vipscpp.h>
|
2009-08-16 17:00:08 +02:00
|
|
|
%}
|
|
|
|
|
|
|
|
%include "std_except.i"
|
|
|
|
%include "std_string.i"
|
|
|
|
|
2009-11-10 14:54:15 +01:00
|
|
|
%include vips/VError.h
|
2009-08-16 17:00:08 +02:00
|
|
|
|
|
|
|
%extend vips::VError {
|
|
|
|
const char *__str__ () {
|
|
|
|
return $self->what ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|