X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHEXABLOCK%2FHexEltBase.cxx;h=d80e8cabf89755c029adfc1446ce3f3fe10c38a5;hb=359245fea46fbec5630a9a72bfb2d906261fa36f;hp=5198b49917f9fa59b9bf3380eb0f736dd4d83fc4;hpb=6100168b28f7fe487a360409ef4f8e7c38df4450;p=modules%2Fhexablock.git diff --git a/src/HEXABLOCK/HexEltBase.cxx b/src/HEXABLOCK/HexEltBase.cxx old mode 100755 new mode 100644 index 5198b49..d80e8ca --- a/src/HEXABLOCK/HexEltBase.cxx +++ b/src/HEXABLOCK/HexEltBase.cxx @@ -1,12 +1,12 @@ // C++ : Element de base -// Copyright (C) 2009-2013 CEA/DEN, EDF R&D +// Copyright (C) 2009-2023 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 @@ -173,14 +173,14 @@ bool EltBase::debug (int niv) return el_root != NULL && el_root->getLevel() > niv ; } // ========================================================= getNextName -string EltBase::getNextName () +std::string EltBase::getNextName () { if (el_root != NULL) return el_root->getNextName (el_type); char name [16]; makeName (el_type, 0, name); - return string (name); + return std::string (name); } END_NAMESPACE_HEXA