]> SALOME platform Git repositories - modules/smesh.git/blobdiff - src/StdMeshers/StdMeshers_NumberOfSegments.hxx
Salome HOME
fight warnings c++17 error throw(). Build SMESH finished.
[modules/smesh.git] / src / StdMeshers / StdMeshers_NumberOfSegments.hxx
index ef6967f5a51de0545d57276ba1739a2c0947c061..2d797105846ed47eb425da1891c4d454651f52ca 100644 (file)
@@ -48,15 +48,15 @@ public:
   virtual ~StdMeshers_NumberOfSegments();
 
   // Builds point distribution according to passed function
-  const std::vector<double>& BuildDistributionExpr( const char*, int, int ) throw ( SALOME_Exception );
-  const std::vector<double>& BuildDistributionTab( const std::vector<double>&, int, int ) throw ( SALOME_Exception );
+  const std::vector<double>& BuildDistributionExpr( const char*, int, int ) ;
+  const std::vector<double>& BuildDistributionTab( const std::vector<double>&, int, int ) ;
 
   /*!
    * \brief Set the number of segments
     * \param segmentsNumber - must be greater than zero
    */
   void SetNumberOfSegments(int segmentsNumber)
-    throw (SALOME_Exception);
+    ;
 
   /*!
    * \brief Get the number of segments
@@ -78,7 +78,7 @@ public:
    * \brief Set distribution type
    */
   void SetDistrType(DistrType typ)
-    throw (SALOME_Exception);
+    ;
 
   /*!
    * \brief Get distribution type
@@ -93,7 +93,7 @@ public:
    * or scaleFactor is not a positive value different from 1
    */
   virtual void SetScaleFactor(double scaleFactor)
-    throw (SALOME_Exception);
+    ;
 
   /*!
    * \brief Get scale factor for scale distribution
@@ -101,7 +101,7 @@ public:
    * Throws SALOME_Exception if distribution type is not DT_Scale
    */
   double GetScaleFactor() const
-    throw (SALOME_Exception);
+    ;
 
   /*!
    * \brief Set table function for distribution DT_TabFunc
@@ -113,7 +113,7 @@ public:
    * Throws SALOME_Exception if distribution type is not DT_TabFunc
    */
   void SetTableFunction(const std::vector<double>& table)
-    throw (SALOME_Exception);
+    ;
 
   /*!
    * \brief Get table function for distribution DT_TabFunc
@@ -121,7 +121,7 @@ public:
    * Throws SALOME_Exception if distribution type is not DT_TabFunc
    */
   const std::vector<double>& GetTableFunction() const
-    throw (SALOME_Exception);
+    ;
 
   /*!
    * \brief Set expression function for distribution DT_ExprFunc
@@ -131,7 +131,7 @@ public:
    * Throws SALOME_Exception if distribution type is not DT_ExprFunc
    */
   void SetExpressionFunction( const char* expr)
-    throw (SALOME_Exception);
+    ;
 
   /*!
    * \brief Get expression function for distribution DT_ExprFunc
@@ -139,7 +139,7 @@ public:
    * Throws SALOME_Exception if distribution type is not DT_ExprFunc
    */
   const char* GetExpressionFunction() const
-    throw (SALOME_Exception);
+    ;
 
   /*!
    * \brief Checks validity of  the expression of the function f(t), e.g. "sin(t)".
@@ -148,7 +148,7 @@ public:
    */
   static std::string CheckExpressionFunction( const std::string& expr,
                                               const int          convMode)
-    throw (SALOME_Exception);
+    ;
 
   /*!
    * \brief Set conversion mode. When it is 0, it means "exponent mode":
@@ -160,7 +160,7 @@ public:
    * Throws SALOME_Exception if distribution type is not functional
    */
   void SetConversionMode( int conv )
-    throw (SALOME_Exception);
+    ;
 
   /*!
    * \brief Returns conversion mode
@@ -168,7 +168,7 @@ public:
    * Throws SALOME_Exception if distribution type is not functional
    */
   int ConversionMode() const
-    throw (SALOME_Exception);
+    ;
 
   /*!
    * \brief Initialize number of segments by the mesh built on the geometry