Salome HOME
Biking along the template road
[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 MEDFileField1TSWithoutSDA;
39   class MEDFileIntField1TSWithoutSDA;
40   class MEDFileFloatField1TSWithoutSDA;
41   
42   template<>
43   struct MEDLOADER_EXPORT MLFieldTraits<double>
44   {
45     typedef MEDFileFieldMultiTS FMTSType;
46     typedef MEDFileField1TS F1TSType;
47     typedef MEDFileField1TSWithoutSDA F1TSWSDAType;
48   };
49
50   template<>
51   struct MEDLOADER_EXPORT MLFieldTraits<float>
52   {
53     //typedef MEDFileFloatFieldMultiTS FMTSType;
54     //typedef MEDFileFloatField1TS F1TSType;
55     typedef MEDFileFloatField1TSWithoutSDA F1TSWSDAType;
56   };
57   
58   template<>
59   struct MEDLOADER_EXPORT MLFieldTraits<int>
60   {
61     typedef MEDFileIntFieldMultiTS FMTSType;
62     typedef MEDFileIntField1TS F1TSType;
63     typedef MEDFileIntField1TSWithoutSDA F1TSWSDAType;
64   };
65
66   template<class T>
67   struct MEDLOADER_EXPORT MLMeshTraits
68   {
69   };
70   
71   class MEDFileUMesh;
72   class MEDFileCMesh;
73   class MEDFileCurveLinearMesh;
74   
75   template<>
76   struct MEDLOADER_EXPORT MLMeshTraits<MEDFileUMesh>
77   {
78     static const char ClassName[];
79   };
80   
81   template<>
82   struct MEDLOADER_EXPORT MLMeshTraits<MEDFileCMesh>
83   {
84     static const char ClassName[];
85   };
86
87   template<>
88   struct MEDLOADER_EXPORT MLMeshTraits<MEDFileCurveLinearMesh>
89   {
90     static const char ClassName[];
91   };
92 }
93
94 #endif