]> SALOME platform Git repositories - tools/medcoupling.git/blob - src/MEDCoupling/MEDCouplingTraits.hxx
Salome HOME
ff5debe4c33f3aa38ad9f9268b8a933850f9c5ed
[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     typedef DataArrayDouble ArrayType;
55     typedef DataArrayDouble ArrayTypeCh;
56     typedef MEDCouplingFieldDouble FieldType;
57     typedef DataArrayDoubleTuple ArrayTuple;
58   };
59
60   template<>
61   struct MEDCOUPLING_EXPORT Traits<float>
62   {
63     static const char ArrayTypeName[];
64     static const char FieldTypeName[];
65     static const char NPYStr[];
66     typedef DataArrayFloat ArrayType;
67     typedef DataArrayFloat ArrayTypeCh;
68     typedef MEDCouplingFieldFloat FieldType;
69     typedef DataArrayFloatTuple ArrayTuple;
70   };
71   
72   template<>
73   struct MEDCOUPLING_EXPORT Traits<Int32>
74   {
75     static const char ArrayTypeName[];
76     static const char FieldTypeName[];
77     typedef DataArrayInt32 ArrayType;
78     typedef DataArrayInt32 ArrayTypeCh;
79     typedef MEDCouplingFieldInt FieldType;
80     typedef DataArrayInt32Tuple ArrayTuple;
81   };
82
83   template<>
84   struct MEDCOUPLING_EXPORT Traits<Int64>
85   {
86     static const char ArrayTypeName[];
87     static const char FieldTypeName[];
88     static const char NPYStr[];
89     typedef DataArrayInt64 ArrayType;
90     typedef DataArrayInt64 ArrayTypeCh;
91     //typedef MEDCouplingFieldInt64 FieldType;
92     //typedef DataArrayInt64Tuple ArrayTuple;
93   };
94
95   template<>
96   struct MEDCOUPLING_EXPORT Traits<char>
97   {
98     static const char ArrayTypeName[];
99     typedef DataArrayByte ArrayTypeCh;
100     typedef DataArrayChar ArrayType;
101   };
102 }
103
104 #endif