Salome HOME
0021979]: [ CEA 709 ] Import/export GMF should not take into account the locale to...
[modules/smesh.git] / src / DriverGMF / DriverGMF_Write.cxx
index cdc6a2f5fa01cbda1fdad32d912090ee7a2355ff..6dd232d9106bcef9a1573254f76695fe3b271d9b 100644 (file)
@@ -29,6 +29,8 @@
 #include "SMESHDS_Mesh.hxx"
 #include "SMESH_Comment.hxx"
 
+#include <Basics_Utils.hxx>
+
 extern "C"
 {
 #include "libmesh5.h"
@@ -66,6 +68,8 @@ DriverGMF_Write::~DriverGMF_Write()
 
 Driver_Mesh::Status DriverGMF_Write::Perform()
 {
+  Kernel_Utils::Localizer loc;
+
   const int dim = 3, version = sizeof(long) == 4 ? 2 : 3;
 
   int meshID = GmfOpenMesh( myFile.c_str(), GmfWrite, version, dim );