X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESH%2FSMESH_Hypothesis.cxx;h=2d1e10c165906c40776ccded4f72a2fcf5e6eb45;hb=2ba55546bda34d15c459d4fed60d3d79c894984d;hp=ac9ca2040cc7c3b2dcdbc9439a7e0ae02ba1dbb8;hpb=a17b36970bc61da1d664453c615754997c925b18;p=modules%2Fsmesh.git diff --git a/src/SMESH/SMESH_Hypothesis.cxx b/src/SMESH/SMESH_Hypothesis.cxx index ac9ca2040..2d1e10c16 100644 --- a/src/SMESH/SMESH_Hypothesis.cxx +++ b/src/SMESH/SMESH_Hypothesis.cxx @@ -26,8 +26,12 @@ // Module : SMESH // #include "SMESH_Hypothesis.hxx" + +#include "SMESHDS_Mesh.hxx" #include "SMESH_Gen.hxx" +#include "SMESH_Mesh.hxx" #include "SMESH_subMesh.hxx" + #include "utilities.h" using namespace std; @@ -59,7 +63,6 @@ SMESH_Hypothesis::SMESH_Hypothesis(int hypId, SMESH_Hypothesis::~SMESH_Hypothesis() { - MESSAGE("SMESH_Hypothesis::~SMESH_Hypothesis"); StudyContextStruct* myStudyContext = _gen->GetStudyContext(_studyId); myStudyContext->mapHypothesis[_hypId] = 0; } @@ -115,8 +118,6 @@ int SMESH_Hypothesis::GetStudyId() const void SMESH_Hypothesis::NotifySubMeshesHypothesisModification() { - MESSAGE("SMESH_Hypothesis::NotifySubMeshesHypothesisModification"); - // for all meshes in study StudyContextStruct* myStudyContext = _gen->GetStudyContext(_studyId); @@ -124,15 +125,15 @@ void SMESH_Hypothesis::NotifySubMeshesHypothesisModification() for (itm = myStudyContext->mapMesh.begin(); itm != myStudyContext->mapMesh.end(); itm++) - { - SMESH_Mesh* mesh = (*itm).second; - mesh->NotifySubMeshesHypothesisModification( this ); - } + { + SMESH_Mesh* mesh = (*itm).second; + mesh->NotifySubMeshesHypothesisModification( this ); + } } //============================================================================= /*! - * + * */ //=============================================================================