X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FMEDLoader%2FMEDFileBasis.cxx;h=6daa7de811d918ecd1cebf4ab381cc9bc146681d;hb=97ace34a0d092b676228a0ab6cb5abefa9637e32;hp=aa856a49277636b50ba2211ed92a8d8fdebee971;hpb=10f37bf6f33a762626d7f1093b2f5450c1688667;p=tools%2Fmedcoupling.git diff --git a/src/MEDLoader/MEDFileBasis.cxx b/src/MEDLoader/MEDFileBasis.cxx index aa856a492..6daa7de81 100644 --- a/src/MEDLoader/MEDFileBasis.cxx +++ b/src/MEDLoader/MEDFileBasis.cxx @@ -1,9 +1,9 @@ -// Copyright (C) 2007-2012 CEA/DEN, EDF R&D +// Copyright (C) 2007-2019 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 // License as published by the Free Software Foundation; either -// version 2.1 of the License. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -16,12 +16,13 @@ // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // +// Author : Anthony Geay (CEA/DEN) #include "MEDFileBasis.hxx" #include -using namespace ParaMEDMEM; +using namespace MEDCoupling; MEDFileString::MEDFileString(int maxLgth):_max_lgth(maxLgth),_content(new char[maxLgth+1]) { @@ -33,11 +34,16 @@ MEDFileString::~MEDFileString() delete [] _content; } -void MEDFileString::set(const char *s) throw(INTERP_KERNEL::Exception) +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); }