git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@12402 626c5289-ae23-0410-ae9c-e8d60b6d4f22
39 lines
466 B
Scilab
39 lines
466 B
Scilab
exec("swigtest.start", -1);
|
|
|
|
try
|
|
baseInt = new_BaseInt();
|
|
catch
|
|
swigtesterror();
|
|
end
|
|
|
|
try
|
|
delete_BaseInt(baseInt);
|
|
catch
|
|
swigtesterror();
|
|
end
|
|
|
|
try
|
|
derivedInt = new_DerivedInt();
|
|
catch
|
|
swigtesterror();
|
|
end
|
|
|
|
try
|
|
delete_DerivedInt(derivedInt);
|
|
catch
|
|
swigtesterror();
|
|
end
|
|
|
|
try
|
|
bottomInt = new_BottomInt();
|
|
catch
|
|
swigtesterror();
|
|
end
|
|
|
|
try
|
|
delete_BottomInt(bottomInt);
|
|
catch
|
|
swigtesterror();
|
|
end
|
|
|
|
exec("swigtest.quit", -1);
|