git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@12945 626c5289-ae23-0410-ae9c-e8d60b6d4f22
38 lines
1.5 KiB
Scilab
38 lines
1.5 KiB
Scilab
// This file is released under the 3-clause BSD license. See COPYING-BSD.
|
|
// Generated by builder.sce : Please, do not edit this file
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
libexamplelib_path = get_absolute_file_path('loader.sce');
|
|
//
|
|
// ulink previous function with same name
|
|
[bOK, ilib] = c_link('libexamplelib');
|
|
if bOK then
|
|
ulink(ilib);
|
|
end
|
|
//
|
|
list_functions = [ 'nlopt_doublevector_empty';
|
|
'nlopt_doublevector_size';
|
|
'nlopt_doublevector_clear';
|
|
'nlopt_doublevector_swap';
|
|
'nlopt_doublevector_get_allocator';
|
|
'nlopt_doublevector_pop_back';
|
|
'new_nlopt_doublevector';
|
|
'nlopt_doublevector_push_back';
|
|
'nlopt_doublevector_front';
|
|
'nlopt_doublevector_back';
|
|
'nlopt_doublevector_assign';
|
|
'nlopt_doublevector_resize';
|
|
'nlopt_doublevector_reserve';
|
|
'nlopt_doublevector_capacity';
|
|
'delete_nlopt_doublevector';
|
|
'opt_set_lower_bound';
|
|
'new_opt';
|
|
'delete_opt';
|
|
];
|
|
addinter(libexamplelib_path + filesep() + 'libexamplelib' + getdynlibext(), 'libexamplelib', list_functions);
|
|
// remove temp. variables on stack
|
|
clear libexamplelib_path;
|
|
clear bOK;
|
|
clear ilib;
|
|
clear list_functions;
|
|
// ----------------------------------------------------------------------------
|