1 /*
2 *  Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 *  Copyright (C) 2014 - Scilab Enterprises - 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 __CACSD_GW_HXX__
17 #define __CACSD_GW_HXX__
18 
19 #include "cpp_gateway_prototype.hxx"
20 
21 extern "C"
22 {
23 #include "dynlib_cacsd.h"
24 #include "gw_cacsd.h"
25 }
26 
27 class CacsdModule
28 {
29 private:
CacsdModule()30     CacsdModule() {};
~CacsdModule()31     ~CacsdModule() {};
32 
33 public:
34     CACSD_IMPEXP static int Load();
Unload()35     CACSD_IMPEXP static int Unload()
36     {
37         return 1;
38     }
39 };
40 
41 CPP_GATEWAY_PROTOTYPE(sci_arl2_ius);
42 CPP_GATEWAY_PROTOTYPE(sci_ldiv);
43 CPP_GATEWAY_PROTOTYPE(sci_tzer);
44 CPP_GATEWAY_PROTOTYPE(sci_residu);
45 CPP_GATEWAY_PROTOTYPE(sci_ppol);
46 CPP_GATEWAY_PROTOTYPE(sci_freq);
47 CPP_GATEWAY_PROTOTYPE(sci_ltitr);
48 CPP_GATEWAY_PROTOTYPE(sci_rtitr);
49 CPP_GATEWAY_PROTOTYPE(sci_ereduc);
50 CPP_GATEWAY_PROTOTYPE(sci_fstair);
51 
52 #endif /* __CACSD_GW_HXX__ */
53