Salome HOME
Update copyrights
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingTraits.hxx
1 // Copyright (C) 2016-2019  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 (EDF R&D)
20
21 #ifndef __MEDCOUPLINGTRAITS_HXX__
22 #define __MEDCOUPLINGTRAITS_HXX__
23
24 #include "MEDCoupling.hxx"
25 #include "MCType.hxx"
26
27 namespace MEDCoupling
28 {
29   template<class T>
30   struct MEDCOUPLING_EXPORT Traits
31   {
32     typedef T EltType;
33   };
34
35   class DataArrayInt32;
36   class DataArrayFloat;
37   class DataArrayDouble;
38   class DataArrayChar;
39   class DataArrayByte;
40   class DataArrayInt64;
41   class MEDCouplingFieldDouble;
42   class MEDCouplingFieldFloat;
43   class MEDCouplingFieldInt;
44   class DataArrayInt32Tuple;
45   class DataArrayFloatTuple;
46   class DataArrayDoubleTuple;
47   
48   template<>
49   struct MEDCOUPLING_EXPORT Traits<double>
50   {
51     static const char ArrayTypeName[];
52     static const char FieldTypeName[];
53     static const char NPYStr[];
54     static const char ReprStr[];
55     typedef DataArrayDouble ArrayType;
56     typedef DataArrayDouble ArrayTypeCh;
57     typedef MEDCouplingFieldDouble FieldType;
58     typedef DataArrayDoubleTuple ArrayTuple;
59   };
60
61   template<>
62   struct MEDCOUPLING_EXPORT Traits<float>
63   {
64     static const char ArrayTypeName[];
65     static const char FieldTypeName[];
66     static const char NPYStr[];
67     static const char ReprStr[];
68     typedef DataArrayFloat ArrayType;
69     typedef DataArrayFloat ArrayTypeCh;
70     typedef MEDCouplingFieldFloat FieldType;
71     typedef DataArrayFloatTuple ArrayTuple;
72   };
73   
74   template<>
75   struct MEDCOUPLING_EXPORT Traits<Int32>
76   {
77     static const char ArrayTypeName[];
78     static const char FieldTypeName[];
79     static const char NPYStr[];
80     static const char ReprStr[];
81     static const char VTKReprStr[];
82     typedef DataArrayInt32 ArrayType;
83     typedef DataArrayInt32 ArrayTypeCh;
84     typedef MEDCouplingFieldInt FieldType;
85     typedef DataArrayInt32Tuple ArrayTuple;
86   };
87
88   template<>
89   struct MEDCOUPLING_EXPORT Traits<Int64>
90   {
91     static const char ArrayTypeName[];
92     static const char FieldTypeName[];
93     static const char NPYStr[];
94     static const char ReprStr[];
95     static const char VTKReprStr[];
96     typedef DataArrayInt64 ArrayType;
97     typedef DataArrayInt64 ArrayTypeCh;
98     //typedef MEDCouplingFieldInt64 FieldType;
99     //typedef DataArrayInt64Tuple ArrayTuple;
100   };
101
102   template<>
103   struct MEDCOUPLING_EXPORT Traits<char>
104   {
105     static const char ArrayTypeName[];
106     typedef DataArrayByte ArrayTypeCh;
107     typedef DataArrayChar ArrayType;
108   };
109 }
110
111 #endif