double GetVolumeProximityRatio();
/*!
- * Set verbosity level in the range 0 to 100.
+ * Set verbosity level in the range 0 to 10.
*/
void SetVerbosity(in short theVal) raises (SALOME::SALOME_Exception);
short GetVerbosity();
return
- ## Sets verbosity level in the range 0 to 100.
+ ## Sets verbosity level in the range 0 to 10.
# @param level verbosity level
def SetVerbosity(self, level):
self.Parameters().SetVerbosity(level)
//=============================================================================
void BLSURFPlugin_Hypothesis_i::SetVerbosity(CORBA::Short theVal) {
ASSERT(myBaseImpl);
- if (theVal < 0 || theVal > 100)
+ if (theVal < 0 || theVal > 10)
THROW_SALOME_CORBA_EXCEPTION( "Invalid verbosity level",SALOME::BAD_PARAM );
this->GetImpl()->SetVerbosity(theVal);
SMESH::TPythonDump() << _this() << ".SetVerbosity( " << theVal << " )";