Salome HOME
Integration of PAL/SALOME V2.1.0c from OCC
[modules/smesh.git] / src / SMESHDS / SMESHDS_SubMesh.hxx
index be7e7462a4cc67ef4a970fc955b9117be3f99a98..79d419879c01f4da122e8ae0feffc52109cfdd3a 100644 (file)
 #include "SMDS_Mesh.hxx"
 #include <set>
 
-using namespace std;
-
 class SMESHDS_SubMesh
 {
-  public:
-       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
-       int NbElements() const;
-       SMDS_ElemIteratorPtr GetElements() const;
-       int NbNodes() const;
-       SMDS_NodeIteratorPtr GetNodes() const;
+ public:
+  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
+
+  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;
 
-  private:
-       const SMDS_Mesh * myMesh;
-       set<const SMDS_MeshElement*> myElements;
-       set<const SMDS_MeshNode*> myNodes;
+ private:
+  //const SMDS_Mesh * myMesh;
+  std::set<const SMDS_MeshElement*> myElements;
+  std::set<const SMDS_MeshNode*>    myNodes;
+  std::set<const SMESHDS_SubMesh*>  mySubMeshes;
 };
 #endif