X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHDS%2FSMESHDS_Hypothesis.cxx;h=712ab920dc2929cc2da58a247913f4b10bcbf807;hp=38482c2a25dd153aaeebd1a78bad836a6174e453;hb=f016bdf914220827ec8f9a7048bc78fc3fb8c299;hpb=e9ce775931ad8ec8574230fcbb12ae14bc146030 diff --git a/src/SMESHDS/SMESHDS_Hypothesis.cxx b/src/SMESHDS/SMESHDS_Hypothesis.cxx index 38482c2a2..712ab920d 100644 --- a/src/SMESHDS/SMESHDS_Hypothesis.cxx +++ b/src/SMESHDS/SMESHDS_Hypothesis.cxx @@ -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;