libvips/cplusplus/vips-operators.cc

17 lines
228 B
C++

VImage VImage::add( VImage in2 )
throw( VError )
{
va_list ap;
VImage out;
int result;
va_start( ap, out );
result = call_split( "add", ap, this, in2, &out );
va_end( ap );
if( result )
VError();
return( out );
}