X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FStdMeshers%2FStdMeshers_Geometric1D.cxx;h=feb1e5d8ebfecc4f034794ef625f1ad1032343a1;hp=8de8c92d21bd4f21daebf27372a4a2051febe0af;hb=d9f4b53e489dd5857db264ede6acded7b076c9f1;hpb=6d32f944a0a115b6419184c50b57bf7c4eef5786 diff --git a/src/StdMeshers/StdMeshers_Geometric1D.cxx b/src/StdMeshers/StdMeshers_Geometric1D.cxx index 8de8c92d2..feb1e5d8e 100644 --- a/src/StdMeshers/StdMeshers_Geometric1D.cxx +++ b/src/StdMeshers/StdMeshers_Geometric1D.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2019 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2022 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -57,7 +57,6 @@ StdMeshers_Geometric1D::StdMeshers_Geometric1D(int hypId, SMESH_Gen * gen) //============================================================================= void StdMeshers_Geometric1D::SetStartLength(double length) - throw(SALOME_Exception) { if ( _begLength != length ) { @@ -75,7 +74,6 @@ void StdMeshers_Geometric1D::SetStartLength(double length) //============================================================================= void StdMeshers_Geometric1D::SetCommonRatio(double factor) - throw(SALOME_Exception) { if ( _ratio != factor ) { @@ -114,7 +112,7 @@ double StdMeshers_Geometric1D::GetCommonRatio() const */ //============================================================================= -ostream & StdMeshers_Geometric1D::SaveTo(ostream & save) +std::ostream & StdMeshers_Geometric1D::SaveTo(std::ostream & save) { save << _begLength << " " << _ratio << " "; @@ -129,7 +127,7 @@ ostream & StdMeshers_Geometric1D::SaveTo(ostream & save) */ //============================================================================= -istream & StdMeshers_Geometric1D::LoadFrom(istream & load) +std::istream & StdMeshers_Geometric1D::LoadFrom(std::istream & load) { bool isOK = true; isOK = static_cast(load >> _begLength);