Salome HOME
Just do it
[tools/medcoupling.git] / src / MEDLoader / MEDLoaderTraits.hxx
index 25cdfb3eeeaa5c906f5dc719fc7aeb5600792d3e..03f246ac5d33883508f4f9c900063e61feec13d3 100644 (file)
@@ -53,6 +53,33 @@ namespace MEDCoupling
     typedef MEDFileIntField1TS F1TSType;
     typedef MEDFileIntField1TSWithoutSDA F1TSWSDAType;
   };
+
+  template<class T>
+  struct MEDLOADER_EXPORT MLMeshTraits
+  {
+  };
+  
+  class MEDFileUMesh;
+  class MEDFileCMesh;
+  class MEDFileCurveLinearMesh;
+  
+  template<>
+  struct MEDLOADER_EXPORT MLMeshTraits<MEDFileUMesh>
+  {
+    static const char ClassName[];
+  };
+  
+  template<>
+  struct MEDLOADER_EXPORT MLMeshTraits<MEDFileCMesh>
+  {
+    static const char ClassName[];
+  };
+
+  template<>
+  struct MEDLOADER_EXPORT MLMeshTraits<MEDFileCurveLinearMesh>
+  {
+    static const char ClassName[];
+  };
 }
 
 #endif