Salome HOME
SALOME PAL V1_4_1
[modules/smesh.git] / src / SMESHDS / SMESHDS_Group.hxx
1 //  SMESH SMESHDS : management of mesh data and SMESH document
2 //
3 //  Copyright (C) 2004  CEA
4 // 
5 //  This library is free software; you can redistribute it and/or 
6 //  modify it under the terms of the GNU Lesser General Public 
7 //  License as published by the Free Software Foundation; either 
8 //  version 2.1 of the License. 
9 // 
10 //  This library is distributed in the hope that it will be useful, 
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 //  Lesser General Public License for more details. 
14 // 
15 //  You should have received a copy of the GNU Lesser General Public 
16 //  License along with this library; if not, write to the Free Software 
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 //
21 //
22 //
23 //  File   : SMESHDS_Group.hxx
24 //  Author : Michael Sazonov (OCC)
25 //  Module : SMESH
26 //  $Header$
27
28 #ifndef _SMESHDS_Group_HeaderFile
29 #define _SMESHDS_Group_HeaderFile
30
31 #include <SMDS_MeshGroup.hxx>
32 #include <string>
33
34 class SMESHDS_Mesh;
35
36 class SMESHDS_Group : public SMDS_MeshGroup
37 {
38  public:
39
40   SMESHDS_Group (const SMESHDS_Mesh*       theMesh,
41                  const SMDSAbs_ElementType theType);
42
43   void SetStoreName (const char* theName)
44   { myStoreName = theName; }
45
46   const char* GetStoreName () const
47   { return myStoreName.c_str(); }
48
49   bool Contains (const int theID) const;
50
51   bool Add (const int theID);
52   bool Remove (const int theID);
53
54   int GetID (const int theIndex);
55   // use it for iterations 1..Extent() as alternative to parent's
56   // InitIterator(), More(), Next()
57
58  private:
59   SMESHDS_Group (const SMESHDS_Group& theOther);
60   // prohibited copy constructor
61   SMESHDS_Group& operator = (const SMESHDS_Group& theOther);
62   // prohibited assign operator
63
64   const SMDS_MeshElement* findInMesh (const int theID) const;
65
66   string myStoreName;
67   int    myCurIndex;
68   int    myCurID;
69
70 };
71
72 #endif