git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7707 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
425 B
Text
11 lines
425 B
Text
%typemap(out) SWIGTYPE = SWIGTYPE INSTANCE;
|
|
%typemap(out) SWIGTYPE * = SWIGTYPE *INSTANCE;
|
|
%typemap(out) SWIGTYPE & = SWIGTYPE &INSTANCE;
|
|
%typemap(out) SWIGTYPE [] = SWIGTYPE INSTANCE[];
|
|
%typemap(varout) SWIGTYPE = SWIGTYPE INSTANCE;
|
|
|
|
%typemap(throws,noblock=1) SWIGTYPE CLASS {
|
|
SWIG_set_result(SWIG_NewInstanceObj(SWIG_as_voidptr(SWIG_new_copy($1, $1_ltype)), $&1_descriptor, 1));
|
|
SWIG_fail;
|
|
}
|
|
|