1 /* 2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab 3 * Copyright (C) 2011 - DIGITEO - Cedric DELAMARRE 4 * 5 * Copyright (C) 2012 - 2016 - Scilab Enterprises 6 * 7 * This file is hereby licensed under the terms of the GNU GPL v2.0, 8 * pursuant to article 5.3.4 of the CeCILL v.2.1. 9 * This file was originally licensed under the terms of the CeCILL v2.1, 10 * and continues to be available under such terms. 11 * For more information, see the COPYING file which you should have received 12 * along with this program. 13 * 14 */ 15 16 #ifndef __INTERPOLATION_GW_HXX__ 17 #define __INTERPOLATION_GW_HXX__ 18 19 #include "cpp_gateway_prototype.hxx" 20 21 extern "C" 22 { 23 #include "dynlib_interpolation.h" 24 } 25 26 CPP_GATEWAY_PROTOTYPE_EXPORT(sci_splin, INTERPOLATION_IMPEXP); 27 CPP_GATEWAY_PROTOTYPE_EXPORT(sci_lsq_splin, INTERPOLATION_IMPEXP); 28 CPP_GATEWAY_PROTOTYPE_EXPORT(sci_interp, INTERPOLATION_IMPEXP); 29 CPP_GATEWAY_PROTOTYPE_EXPORT(sci_linear_interpn, INTERPOLATION_IMPEXP); 30 CPP_GATEWAY_PROTOTYPE_EXPORT(sci_splin2d, INTERPOLATION_IMPEXP); 31 CPP_GATEWAY_PROTOTYPE_EXPORT(sci_interp2d, INTERPOLATION_IMPEXP); 32 CPP_GATEWAY_PROTOTYPE_EXPORT(sci_cshep2d, INTERPOLATION_IMPEXP); 33 CPP_GATEWAY_PROTOTYPE_EXPORT(sci_eval_cshep2d, INTERPOLATION_IMPEXP); 34 CPP_GATEWAY_PROTOTYPE_EXPORT(sci_splin3d, INTERPOLATION_IMPEXP); 35 CPP_GATEWAY_PROTOTYPE_EXPORT(sci_interp3d, INTERPOLATION_IMPEXP); 36 CPP_GATEWAY_PROTOTYPE_EXPORT(sci_bsplin3val, INTERPOLATION_IMPEXP); 37 CPP_GATEWAY_PROTOTYPE_EXPORT(sci_mesh2di, INTERPOLATION_IMPEXP); 38 39 #endif /* !__INTERPOLATION_GW_HXX__ */ 40