X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESH%2FSMESH_MaxElementArea.hxx;h=cb60c66c5f1e913180d48cb0450f730b739f2667;hp=062a92f662209210c9010976d05475e539ee899a;hb=bb2c60c2b654843ed9727afde458334b108a26f4;hpb=0273fe09c6ef581ae93aaa4fe652676fa42f997e diff --git a/src/SMESH/SMESH_MaxElementArea.hxx b/src/SMESH/SMESH_MaxElementArea.hxx index 062a92f66..cb60c66c5 100644 --- a/src/SMESH/SMESH_MaxElementArea.hxx +++ b/src/SMESH/SMESH_MaxElementArea.hxx @@ -32,25 +32,23 @@ #include "SMESH_Hypothesis.hxx" #include "Utils_SALOME_Exception.hxx" -class SMESH_MaxElementArea: - public SMESH_Hypothesis +class SMESH_MaxElementArea:public SMESH_Hypothesis { -public: - SMESH_MaxElementArea(int hypId, int studyId, SMESH_Gen* gen); - virtual ~SMESH_MaxElementArea(); + public: + SMESH_MaxElementArea(int hypId, int studyId, SMESH_Gen * gen); + virtual ~ SMESH_MaxElementArea(); - void SetMaxArea(double maxArea) - throw (SALOME_Exception); + void SetMaxArea(double maxArea) throw(SALOME_Exception); - double GetMaxArea(); + double GetMaxArea() const; - virtual ostream & SaveTo(ostream & save); - virtual istream & LoadFrom(istream & load); - friend ostream & operator << (ostream & save, SMESH_MaxElementArea & hyp); - friend istream & operator >> (istream & load, SMESH_MaxElementArea & hyp); + virtual ostream & SaveTo(ostream & save); + virtual istream & LoadFrom(istream & load); + friend ostream & operator <<(ostream & save, SMESH_MaxElementArea & hyp); + friend istream & operator >>(istream & load, SMESH_MaxElementArea & hyp); -protected: - double _maxArea; + protected: + double _maxArea; }; #endif