Salome HOME
Merge branch 'V9_9_BR'
[modules/hexablock.git] / src / HEXABLOCK / HexEltBase.cxx
index abe1b45d86b23c190b0865648e664e46f6d26ca6..41a4aebe480fbfd8daa6010acf69828b532922fc 100644 (file)
@@ -1,7 +1,7 @@
 
 // C++ : Element de base
 
-// Copyright (C) 2009-2019  CEA/DEN, EDF R&D
+// Copyright (C) 2009-2022  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
@@ -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