Salome HOME
Extra warning options to help int64/int32 management
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingTraits.hxx
1 // Copyright (C) 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 (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     typedef DataArrayInt32 ArrayType;
82     typedef DataArrayInt32 ArrayTypeCh;
83     typedef MEDCouplingFieldInt FieldType;
84     typedef DataArrayInt32Tuple ArrayTuple;
85   };
86
87   template<>
88   struct MEDCOUPLING_EXPORT Traits<Int64>
89   {
90     static const char ArrayTypeName[];
91     static const char FieldTypeName[];
92     static const char NPYStr[];
93     static const char ReprStr[];
94     typedef DataArrayInt64 ArrayType;
95     typedef DataArrayInt64 ArrayTypeCh;
96     //typedef MEDCouplingFieldInt64 FieldType;
97     //typedef DataArrayInt64Tuple ArrayTuple;
98   };
99
100   template<>
101   struct MEDCOUPLING_EXPORT Traits<char>
102   {
103     static const char ArrayTypeName[];
104     typedef DataArrayByte ArrayTypeCh;
105     typedef DataArrayChar ArrayType;
106   };
107 }
108
109 #endif