1 /*
2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2015 - Scilab Enterprises - Sylvain GENIN
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 __CREATEMATLABTREEVARIABLE_HXX__
17 #define __CREATEMATLABTREEVARIABLE_HXX__
18 
19 #include "gatewaystruct.hxx"
20 #include "double.hxx"
21 #include "int.hxx"
22 #include "cell.hxx"
23 #include "struct.hxx"
24 #include "string.hxx"
25 #include "sparse.hxx"
26 
27 
28 extern "C"
29 {
30 #include "CreateMatlabVariable.h"
31 #include "api_scilab.h"
32 #include "Scierror.h"
33 }
34 
35 matvar_t *ConvertSciVarToMatVar(types::InternalType* pIT, const char *name, int matfile_version);
36 
37 #endif /* !__CREATEMATLABTREEVARIABLE_HXX__ */
38