From 5b889e3e3ee1533b1046811adad02a4fe783860c Mon Sep 17 00:00:00 2001 From: jrt Date: Thu, 4 Sep 2003 09:10:12 +0000 Subject: [PATCH] make GetLength const --- src/SMESH/SMESH_LocalLength.cxx | 54 ++++++++++++++++----------------- src/SMESH/SMESH_LocalLength.hxx | 26 ++++++++-------- 2 files changed, 39 insertions(+), 41 deletions(-) diff --git a/src/SMESH/SMESH_LocalLength.cxx b/src/SMESH/SMESH_LocalLength.cxx index 8a9cf27f3..410ff1d2c 100644 --- a/src/SMESH/SMESH_LocalLength.cxx +++ b/src/SMESH/SMESH_LocalLength.cxx @@ -37,11 +37,11 @@ using namespace std; */ //============================================================================= -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); } @@ -62,15 +62,14 @@ SMESH_LocalLength::~SMESH_LocalLength() */ //============================================================================= -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(); } //============================================================================= @@ -79,9 +78,9 @@ void SMESH_LocalLength::SetLength(double length) */ //============================================================================= -double SMESH_LocalLength::GetLength() +double SMESH_LocalLength::GetLength() const { - return _length; + return _length; } //============================================================================= @@ -92,7 +91,7 @@ double SMESH_LocalLength::GetLength() ostream & SMESH_LocalLength::SaveTo(ostream & save) { - return save << this; + return save << this; } //============================================================================= @@ -103,7 +102,7 @@ ostream & SMESH_LocalLength::SaveTo(ostream & save) istream & SMESH_LocalLength::LoadFrom(istream & load) { - return load >> (*this); + return load >> (*this); } //============================================================================= @@ -112,10 +111,10 @@ istream & SMESH_LocalLength::LoadFrom(istream & load) */ //============================================================================= -ostream & operator << (ostream & save, SMESH_LocalLength & hyp) +ostream & operator <<(ostream & save, SMESH_LocalLength & hyp) { - save << hyp._length; - return save; + save << hyp._length; + return save; } //============================================================================= @@ -124,13 +123,14 @@ ostream & operator << (ostream & save, SMESH_LocalLength & hyp) */ //============================================================================= -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; } - diff --git a/src/SMESH/SMESH_LocalLength.hxx b/src/SMESH/SMESH_LocalLength.hxx index 147890c16..7cb47251e 100644 --- a/src/SMESH/SMESH_LocalLength.hxx +++ b/src/SMESH/SMESH_LocalLength.hxx @@ -32,25 +32,23 @@ #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 -- 2.30.2