]> SALOME platform Git repositories - tools/medcoupling.git/blob - src/MEDLoader/MEDLoaderTraits.hxx
Salome HOME
60617cd473c44b736fc57e73eccb8eab24654ba5
[tools/medcoupling.git] / src / MEDLoader / MEDLoaderTraits.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 __MEDLOADERTRAITS_HXX__
22 #define __MEDLOADERTRAITS_HXX__
23
24 #include "MEDLoaderDefines.hxx"
25
26 namespace MEDCoupling
27 {
28   template<class T>
29   struct MEDLOADER_EXPORT MLFieldTraits
30   {
31     typedef T EltType;
32   };
33
34   class MEDFileFieldMultiTS;
35   class MEDFileField1TS;
36   class MEDFileIntFieldMultiTS;
37   class MEDFileIntField1TS;
38   class MEDFileFloatField1TS;
39   class MEDFileField1TSWithoutSDA;
40   class MEDFileIntField1TSWithoutSDA;
41   class MEDFileFloatField1TSWithoutSDA;
42   
43   template<>
44   struct MEDLOADER_EXPORT MLFieldTraits<double>
45   {
46     typedef MEDFileFieldMultiTS FMTSType;
47     typedef MEDFileField1TS F1TSType;
48     typedef MEDFileField1TSWithoutSDA F1TSWSDAType;
49   };
50
51   template<>
52   struct MEDLOADER_EXPORT MLFieldTraits<float>
53   {
54     //typedef MEDFileFloatFieldMultiTS FMTSType;
55     typedef MEDFileFloatField1TS F1TSType;
56     typedef MEDFileFloatField1TSWithoutSDA F1TSWSDAType;
57   };
58   
59   template<>
60   struct MEDLOADER_EXPORT MLFieldTraits<int>
61   {
62     typedef MEDFileIntFieldMultiTS FMTSType;
63     typedef MEDFileIntField1TS F1TSType;
64     typedef MEDFileIntField1TSWithoutSDA F1TSWSDAType;
65   };
66
67   template<class T>
68   struct MEDLOADER_EXPORT MLMeshTraits
69   {
70   };
71   
72   class MEDFileUMesh;
73   class MEDFileCMesh;
74   class MEDFileCurveLinearMesh;
75   
76   template<>
77   struct MEDLOADER_EXPORT MLMeshTraits<MEDFileUMesh>
78   {
79     static const char ClassName[];
80   };
81   
82   template<>
83   struct MEDLOADER_EXPORT MLMeshTraits<MEDFileCMesh>
84   {
85     static const char ClassName[];
86   };
87
88   template<>
89   struct MEDLOADER_EXPORT MLMeshTraits<MEDFileCurveLinearMesh>
90   {
91     static const char ClassName[];
92   };
93 }
94
95 #endif