X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FStdMeshers%2FStdMeshers_Adaptive1D.hxx;h=89055ab70ffee133d5295a97a44254139b533e7a;hp=601aeae0b05198156e629cd5a9dbd573efa1e1f6;hb=499f29d24922cec66e41b41a0039a954993bc6df;hpb=7eda9ca931ed2a11cb5e4637e4ffe19f5c061115 diff --git a/src/StdMeshers/StdMeshers_Adaptive1D.hxx b/src/StdMeshers/StdMeshers_Adaptive1D.hxx index 601aeae0b..89055ab70 100644 --- a/src/StdMeshers/StdMeshers_Adaptive1D.hxx +++ b/src/StdMeshers/StdMeshers_Adaptive1D.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2016 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 @@ -37,26 +37,26 @@ class STDMESHERS_EXPORT StdMeshers_Adaptive1D : public SMESH_Hypothesis { public: - StdMeshers_Adaptive1D(int hypId, int studyId, SMESH_Gen * gen); + StdMeshers_Adaptive1D(int hypId, SMESH_Gen * gen); ~StdMeshers_Adaptive1D(); /*! * Sets minimal allowed segment length */ - void SetMinSize( double minSegLen ) throw (SALOME_Exception); + void SetMinSize( double minSegLen ); double GetMinSize() const { return myMinSize; } /*! * Sets maximal allowed segment length */ - void SetMaxSize( double maxSegLen ) throw (SALOME_Exception); + void SetMaxSize( double maxSegLen ); double GetMaxSize() const { return myMaxSize; } /*! * Sets parameter value, * i.e. a maximal allowed distance between a segment and an edge. */ - void SetDeflection(double value) throw(SALOME_Exception); + void SetDeflection(double value); double GetDeflection() const { return myDeflection; } virtual std::ostream & SaveTo(std::ostream & save);