Salome HOME
Structure element inside Gauss Points management
[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   
41   template<>
42   struct MEDLOADER_EXPORT MLFieldTraits<double>
43   {
44     typedef MEDFileFieldMultiTS FMTSType;
45     typedef MEDFileField1TS F1TSType;
46     typedef MEDFileField1TSWithoutSDA F1TSWSDAType;
47   };
48   
49   template<>
50   struct MEDLOADER_EXPORT MLFieldTraits<int>
51   {
52     typedef MEDFileIntFieldMultiTS FMTSType;
53     typedef MEDFileIntField1TS F1TSType;
54     typedef MEDFileIntField1TSWithoutSDA F1TSWSDAType;
55   };
56
57   template<class T>
58   struct MEDLOADER_EXPORT MLMeshTraits
59   {
60   };
61   
62   class MEDFileUMesh;
63   class MEDFileCMesh;
64   class MEDFileCurveLinearMesh;
65   
66   template<>
67   struct MEDLOADER_EXPORT MLMeshTraits<MEDFileUMesh>
68   {
69     static const char ClassName[];
70   };
71   
72   template<>
73   struct MEDLOADER_EXPORT MLMeshTraits<MEDFileCMesh>
74   {
75     static const char ClassName[];
76   };
77
78   template<>
79   struct MEDLOADER_EXPORT MLMeshTraits<MEDFileCurveLinearMesh>
80   {
81     static const char ClassName[];
82   };
83 }
84
85 #endif