Salome HOME
Just do it
[tools/medcoupling.git] / src / MEDLoader / MEDFileEntities.cxx
index dee2c2e9fc8dea8d9badc329bc00794a5f22cdb3..79190c99cae1a93edc2a205c9c1e1cde44ab5702 100644 (file)
@@ -38,6 +38,10 @@ MEDFileEntities *MEDFileEntities::BuildFrom(const MEDFileStructureElements& se)
     return new MEDFileAllStaticEntitiesPlusDyn(&se);
 }
 
+MEDFileEntities::~MEDFileEntities()
+{
+}
+
 //////////////
 
 std::vector<int> MEDFileStaticEntities::getDynGTAvail() const
@@ -80,3 +84,13 @@ bool MEDFileAllStaticEntitiesPlusDyn::areAllStaticTypesPresent() const
 {
   return true;
 }
+
+const MEDFileStructureElement *MEDFileAllStaticEntitiesPlusDyn::getWithGT(int idGT) const
+{
+  return _se->getWithGT(idGT);
+}
+
+const MEDFileUMesh *MEDFileAllStaticEntitiesPlusDyn::getSupMeshWithName(const std::string& name) const
+{
+  return _se->getSupMeshWithName(name);
+}