X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHDS%2FSMESHDS_SubMesh.hxx;h=7b202b9a4b4e3e45576fdaddb78a3146ecdfd978;hp=79d419879c01f4da122e8ae0feffc52109cfdd3a;hb=5ce23baf3aaec1507f239da8595afa38c7842836;hpb=0febe018bcde111dc7aca1f3e44d4aa2995b59a2 diff --git a/src/SMESHDS/SMESHDS_SubMesh.hxx b/src/SMESHDS/SMESHDS_SubMesh.hxx index 79d419879..7b202b9a4 100644 --- a/src/SMESHDS/SMESHDS_SubMesh.hxx +++ b/src/SMESHDS/SMESHDS_SubMesh.hxx @@ -33,21 +33,26 @@ class SMESHDS_SubMesh { public: + + bool IsComplexSubmesh() const { return !mySubMeshes.empty(); } + + // if !IsComplexSubmesh() void AddElement(const SMDS_MeshElement * ME); bool RemoveElement(const SMDS_MeshElement * ME); // ret true if ME was in void AddNode(const SMDS_MeshNode * ME); bool RemoveNode(const SMDS_MeshNode * ME); // ret true if ME was in - bool Contains(const SMDS_MeshElement * ME); // check if elem or node is in + // if IsComplexSubmesh() + void AddSubMesh( const SMESHDS_SubMesh* theSubMesh ); + bool RemoveSubMesh( const SMESHDS_SubMesh* theSubMesh ); + bool ContainsSubMesh( const SMESHDS_SubMesh* theSubMesh ) const; + + // for both types int NbElements() const; SMDS_ElemIteratorPtr GetElements() const; int NbNodes() const; SMDS_NodeIteratorPtr GetNodes() const; - - // child sub-meshes - void AddSubMesh( const SMESHDS_SubMesh* theSubMesh ); - bool RemoveSubMesh( const SMESHDS_SubMesh* theSubMesh ); - bool ContainsSubMesh( const SMESHDS_SubMesh* theSubMesh ) const; + bool Contains(const SMDS_MeshElement * ME) const; // check if elem or node is in private: //const SMDS_Mesh * myMesh;