Salome HOME
Windows porting
[tools/medcoupling.git] / src / RENUMBER_Swig / MEDRenumberCommon.i
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (CEA/DEN)
20
21 %include std_vector.i
22 %include std_string.i
23
24 %{
25 #ifdef WIN32
26 #define MEDCOUPLING_WIN32_SWIG
27 #endif
28 #include "MEDCouplingMemArray.txx"
29 #include "MCAuto.hxx"
30 #include "MEDCouplingDataArrayTypemaps.i"
31
32 using namespace MEDCoupling;
33 using namespace INTERP_KERNEL;
34 %}
35
36 %template(ivec) std::vector<int>;
37 %template(dvec) std::vector<double>;
38 %template(svec) std::vector<std::string>;
39
40 #ifdef WITH_NUMPY
41 %init %{ import_array(); %}
42 #endif
43
44 %init %{ initializeMe_renumber(); %}
45
46 %feature("autodoc", "1");
47 %feature("docstring");
48
49 %nodefaultctor;
50
51 %rename (InterpKernelException) INTERP_KERNEL::Exception;
52
53 %include "MEDCouplingRefCountObject.i"
54 %include "MEDCouplingMemArray.i"
55
56 %{
57   void initializeMe_renumber()
58   {// AGY : here initialization of C++ traits in MEDCouplingDataArrayTypemaps.i for code factorization. Awful, I know, but no other solutions.
59     SWIGTITraits<double>::TI=SWIGTYPE_p_MEDCoupling__DataArrayDouble;
60     SWIGTITraits<float>::TI=SWIGTYPE_p_MEDCoupling__DataArrayFloat;
61   }
62 %}
63
64 %include "MEDRenumberImpl.i"
65
66 %pythoncode %{
67 import os
68 __filename=os.environ.get('PYTHONSTARTUP')
69 if __filename and os.path.isfile(__filename):
70   exec(open(__filename).read())
71   pass
72 %}