*/
//=============================================================================
-SMESH_LocalLength::SMESH_LocalLength(int hypId, int studyId, SMESH_Gen* gen)
- : SMESH_Hypothesis(hypId, studyId, gen)
+SMESH_LocalLength::SMESH_LocalLength(int hypId, int studyId,
+ SMESH_Gen * gen):SMESH_Hypothesis(hypId, studyId, gen)
{
- _length =1.;
- _name = "LocalLength";
+ _length = 1.;
+ _name = "LocalLength";
// SCRUTE(_name);
// SCRUTE(&_name);
}
*/
//=============================================================================
-void SMESH_LocalLength::SetLength(double length)
- throw (SALOME_Exception)
+void SMESH_LocalLength::SetLength(double length) throw(SALOME_Exception)
{
- double oldLength = _length;
- if (length <= 0)
- throw SALOME_Exception(LOCALIZED("length must be positive"));
- _length = length;
- if (oldLength != _length)
- NotifySubMeshesHypothesisModification();
+ double oldLength = _length;
+ if (length <= 0)
+ throw SALOME_Exception(LOCALIZED("length must be positive"));
+ _length = length;
+ if (oldLength != _length)
+ NotifySubMeshesHypothesisModification();
}
//=============================================================================
*/
//=============================================================================
-double SMESH_LocalLength::GetLength()
+double SMESH_LocalLength::GetLength() const
{
- return _length;
+ return _length;
}
//=============================================================================
ostream & SMESH_LocalLength::SaveTo(ostream & save)
{
- return save << this;
+ return save << this;
}
//=============================================================================
istream & SMESH_LocalLength::LoadFrom(istream & load)
{
- return load >> (*this);
+ return load >> (*this);
}
//=============================================================================
*/
//=============================================================================
-ostream & operator << (ostream & save, SMESH_LocalLength & hyp)
+ostream & operator <<(ostream & save, SMESH_LocalLength & hyp)
{
- save << hyp._length;
- return save;
+ save << hyp._length;
+ return save;
}
//=============================================================================
*/
//=============================================================================
-istream & operator >> (istream & load, SMESH_LocalLength & hyp)
+istream & operator >>(istream & load, SMESH_LocalLength & hyp)
{
- bool isOK = true;
- double a;
- isOK = (load >> a);
- if (isOK) hyp._length = a;
- else load.clear(ios::badbit | load.rdstate());
- return load;
+ bool isOK = true;
+ double a;
+ isOK = (load >> a);
+ if (isOK)
+ hyp._length = a;
+ else
+ load.clear(ios::badbit | load.rdstate());
+ return load;
}
-
#include "SMESH_Hypothesis.hxx"
#include "Utils_SALOME_Exception.hxx"
-class SMESH_LocalLength:
- public SMESH_Hypothesis
+class SMESH_LocalLength:public SMESH_Hypothesis
{
-public:
- SMESH_LocalLength(int hypId, int studyId, SMESH_Gen* gen);
- virtual ~SMESH_LocalLength();
+ public:
+ SMESH_LocalLength(int hypId, int studyId, SMESH_Gen * gen);
+ virtual ~ SMESH_LocalLength();
- void SetLength(double length)
- throw (SALOME_Exception);
+ void SetLength(double length) throw(SALOME_Exception);
- double GetLength();
+ double GetLength() const;
- virtual ostream & SaveTo(ostream & save);
- virtual istream & LoadFrom(istream & load);
- friend ostream & operator << (ostream & save, SMESH_LocalLength & hyp);
- friend istream & operator >> (istream & load, SMESH_LocalLength & hyp);
+ virtual ostream & SaveTo(ostream & save);
+ virtual istream & LoadFrom(istream & load);
+ friend ostream & operator <<(ostream & save, SMESH_LocalLength & hyp);
+ friend istream & operator >>(istream & load, SMESH_LocalLength & hyp);
-protected:
- double _length;
+ protected:
+ double _length;
};
#endif