X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHDS%2FSMESHDS_Hypothesis.cxx;h=b88b3437dd77c5d5d401010102544abfc4a00902;hp=38482c2a25dd153aaeebd1a78bad836a6174e453;hb=HEAD;hpb=88ff35ddd4a4442397bc5f6ba893aaf9c51b1856 diff --git a/src/SMESHDS/SMESHDS_Hypothesis.cxx b/src/SMESHDS/SMESHDS_Hypothesis.cxx index 38482c2a2..ec2a68078 100644 --- a/src/SMESHDS/SMESHDS_Hypothesis.cxx +++ b/src/SMESHDS/SMESHDS_Hypothesis.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2024 CEA, EDF, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -121,7 +121,7 @@ bool SMESHDS_Hypothesis::IsSameName( const SMESHDS_Hypothesis& other) const */ //================================================================================ -void SMESHDS_Hypothesis::SaveString(std::ostream & save, const std::string& txt ) +void SMESHDS_Hypothesis::SaveStringToStream(std::ostream & save, const std::string& txt ) { save << " " << txt.size() << " " << txt; } @@ -132,7 +132,7 @@ void SMESHDS_Hypothesis::SaveString(std::ostream & save, const std::string& txt */ //================================================================================ -bool SMESHDS_Hypothesis::LoadString(std::istream & load, std::string& txt ) +bool SMESHDS_Hypothesis::LoadStringFromStream(std::istream & load, std::string& txt ) { txt.clear(); int size = -1;