Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IGroupOperations.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20
21 #ifndef _GEOMImpl_IGroupOperations_HXX_
22 #define _GEOMImpl_IGroupOperations_HXX_
23
24 #include "Utils_SALOME_Exception.hxx"
25 #include "GEOM_IOperations.hxx"
26 #include "GEOM_Engine.hxx"
27 #include "GEOM_Object.hxx"
28 #include <TDocStd_Document.hxx>
29 #include <TColStd_HArray1OfInteger.hxx> 
30 #include <TColStd_HSequenceOfInteger.hxx>
31 #include <TopAbs.hxx>
32
33 class GEOMImpl_IGroupOperations : public GEOM_IOperations {
34  public:
35   Standard_EXPORT GEOMImpl_IGroupOperations(GEOM_Engine* theEngine, int theDocID);
36   Standard_EXPORT ~GEOMImpl_IGroupOperations();
37
38   Standard_EXPORT Handle(GEOM_Object) CreateGroup(Handle(GEOM_Object) theMainShape, TopAbs_ShapeEnum  theShapeType);
39
40   Standard_EXPORT void AddObject(Handle(GEOM_Object) theGroup, int theSubShapeID);
41
42   Standard_EXPORT void RemoveObject(Handle(GEOM_Object) theGroup, int theSubShapeID);
43
44   Standard_EXPORT void UnionList (Handle(GEOM_Object) theGroup,
45                   const Handle(TColStd_HSequenceOfTransient)& theSubShapes);
46
47   Standard_EXPORT void DifferenceList (Handle(GEOM_Object) theGroup,
48                        const Handle(TColStd_HSequenceOfTransient)& theSubShapes);
49
50   Standard_EXPORT void UnionIDs (Handle(GEOM_Object) theGroup,
51                  const Handle(TColStd_HSequenceOfInteger)& theSubShapes);
52
53   Standard_EXPORT void DifferenceIDs (Handle(GEOM_Object) theGroup,
54                       const Handle(TColStd_HSequenceOfInteger)& theSubShapes);
55
56   Standard_EXPORT TopAbs_ShapeEnum GetType(Handle(GEOM_Object) theGroup);
57
58   Standard_EXPORT Handle(GEOM_Object) GetMainShape(Handle(GEOM_Object) theGroup);
59
60   Standard_EXPORT Handle(TColStd_HArray1OfInteger) GetObjects(Handle(GEOM_Object) theGroup);
61
62 };
63
64 #endif