Salome HOME
reintroduction of choice of MED minor version when exporting MED files
[modules/smesh.git] / src / MEDWrapper / MED_Factory.cxx
index 02b7e866ee737e69f6029ec33970789626113043..52558d0f43c3e0210eda60ea00ec8a06ebfc11bc 100644 (file)
@@ -111,10 +111,10 @@ namespace MED
     return new MED::TWrapper(fileName);
   }
 
-  PWrapper CrWrapperW(const std::string& fileName)
+  PWrapper CrWrapperW(const std::string& fileName, int theMinor)
   {
     if (!CheckCompatibility(fileName))
       remove(fileName.c_str());
-    return new MED::TWrapper(fileName);
+    return new MED::TWrapper(fileName, theMinor);
   }
 }