mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-27 16:00:33 +05:00
make GetLength const
This commit is contained in:
parent
19ad8814ce
commit
5b889e3e3e
@ -37,10 +37,10 @@ using namespace std;
|
|||||||
*/
|
*/
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
|
||||||
SMESH_LocalLength::SMESH_LocalLength(int hypId, int studyId, SMESH_Gen* gen)
|
SMESH_LocalLength::SMESH_LocalLength(int hypId, int studyId,
|
||||||
: SMESH_Hypothesis(hypId, studyId, gen)
|
SMESH_Gen * gen):SMESH_Hypothesis(hypId, studyId, gen)
|
||||||
{
|
{
|
||||||
_length =1.;
|
_length = 1.;
|
||||||
_name = "LocalLength";
|
_name = "LocalLength";
|
||||||
// SCRUTE(_name);
|
// SCRUTE(_name);
|
||||||
// SCRUTE(&_name);
|
// SCRUTE(&_name);
|
||||||
@ -62,8 +62,7 @@ SMESH_LocalLength::~SMESH_LocalLength()
|
|||||||
*/
|
*/
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
|
||||||
void SMESH_LocalLength::SetLength(double length)
|
void SMESH_LocalLength::SetLength(double length) throw(SALOME_Exception)
|
||||||
throw (SALOME_Exception)
|
|
||||||
{
|
{
|
||||||
double oldLength = _length;
|
double oldLength = _length;
|
||||||
if (length <= 0)
|
if (length <= 0)
|
||||||
@ -79,7 +78,7 @@ void SMESH_LocalLength::SetLength(double length)
|
|||||||
*/
|
*/
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
|
||||||
double SMESH_LocalLength::GetLength()
|
double SMESH_LocalLength::GetLength() const
|
||||||
{
|
{
|
||||||
return _length;
|
return _length;
|
||||||
}
|
}
|
||||||
@ -112,7 +111,7 @@ istream & SMESH_LocalLength::LoadFrom(istream & load)
|
|||||||
*/
|
*/
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
|
|
||||||
ostream & operator << (ostream & save, SMESH_LocalLength & hyp)
|
ostream & operator <<(ostream & save, SMESH_LocalLength & hyp)
|
||||||
{
|
{
|
||||||
save << hyp._length;
|
save << hyp._length;
|
||||||
return save;
|
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;
|
bool isOK = true;
|
||||||
double a;
|
double a;
|
||||||
isOK = (load >> a);
|
isOK = (load >> a);
|
||||||
if (isOK) hyp._length = a;
|
if (isOK)
|
||||||
else load.clear(ios::badbit | load.rdstate());
|
hyp._length = a;
|
||||||
|
else
|
||||||
|
load.clear(ios::badbit | load.rdstate());
|
||||||
return load;
|
return load;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,24 +32,22 @@
|
|||||||
#include "SMESH_Hypothesis.hxx"
|
#include "SMESH_Hypothesis.hxx"
|
||||||
#include "Utils_SALOME_Exception.hxx"
|
#include "Utils_SALOME_Exception.hxx"
|
||||||
|
|
||||||
class SMESH_LocalLength:
|
class SMESH_LocalLength:public SMESH_Hypothesis
|
||||||
public SMESH_Hypothesis
|
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
SMESH_LocalLength(int hypId, int studyId, SMESH_Gen* gen);
|
SMESH_LocalLength(int hypId, int studyId, SMESH_Gen * gen);
|
||||||
virtual ~SMESH_LocalLength();
|
virtual ~ SMESH_LocalLength();
|
||||||
|
|
||||||
void SetLength(double length)
|
void SetLength(double length) throw(SALOME_Exception);
|
||||||
throw (SALOME_Exception);
|
|
||||||
|
|
||||||
double GetLength();
|
double GetLength() const;
|
||||||
|
|
||||||
virtual ostream & SaveTo(ostream & save);
|
virtual ostream & SaveTo(ostream & save);
|
||||||
virtual istream & LoadFrom(istream & load);
|
virtual istream & LoadFrom(istream & load);
|
||||||
friend ostream & operator << (ostream & save, SMESH_LocalLength & hyp);
|
friend ostream & operator <<(ostream & save, SMESH_LocalLength & hyp);
|
||||||
friend istream & operator >> (istream & load, SMESH_LocalLength & hyp);
|
friend istream & operator >>(istream & load, SMESH_LocalLength & hyp);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
double _length;
|
double _length;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user