Salome HOME
Structure element inside Gauss Points management
[tools/medcoupling.git] / src / MEDLoader / MEDFileBasis.cxx
index a9a5696b459ecbe3b97e90ee8b0bad4cced586a9..24c5e7314159f255960f7daff293aba17e0cafa8 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2014  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2016  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -22,7 +22,7 @@
 
 #include <cstring>
 
-using namespace ParaMEDMEM;
+using namespace MEDCoupling;
 
 MEDFileString::MEDFileString(int maxLgth):_max_lgth(maxLgth),_content(new char[maxLgth+1])
 {
@@ -34,11 +34,16 @@ MEDFileString::~MEDFileString()
   delete [] _content;
 }
 
+void MEDFileString::clear()
+{
+  std::fill(_content,_content+_max_lgth+1,'\0');
+}
+
 void MEDFileString::set(const char *s)
 {
   if((int)strlen(s)>_max_lgth)
     throw INTERP_KERNEL::Exception("Name is too long to be stored in MEDfile !");
-  std::fill(_content,_content+_max_lgth+1,'\0');
+  clear();
   strcpy(_content,s);
 }