Salome HOME
Update mail address
[modules/geom.git] / src / GEOM_I / GEOM_IGroupOperations_i.hh
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 _GEOM_IGroupOperations_i_HeaderFile
22 #define _GEOM_IGroupOperations_i_HeaderFile
23
24
25 #include <SALOMEconfig.h>
26
27 #include CORBA_SERVER_HEADER(GEOM_Gen)
28 #include "GEOM_IOperations_i.hh"
29 #include "GEOM_Object_i.hh"
30
31 #include "GEOMImpl_IGroupOperations.hxx"
32
33 class GEOM_IGroupOperations_i : 
34     public virtual POA_GEOM::GEOM_IGroupOperations,
35     public virtual GEOM_IOperations_i
36 {
37  public:
38   GEOM_IGroupOperations_i (PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine,
39                            ::GEOMImpl_IGroupOperations* theImpl);
40   ~GEOM_IGroupOperations_i();
41
42   GEOM::GEOM_Object_ptr CreateGroup  (GEOM::GEOM_Object_ptr theMainShape, CORBA::Long theShapeType);
43  
44   void AddObject (GEOM::GEOM_Object_ptr theGroup, CORBA::Long theSubShapeId);
45
46   void RemoveObject (GEOM::GEOM_Object_ptr theGroup, CORBA::Long theSubShapeId);
47
48   void UnionList (GEOM::GEOM_Object_ptr theGroup, const GEOM::ListOfGO& theSubShapes);
49
50   void DifferenceList (GEOM::GEOM_Object_ptr theGroup, const GEOM::ListOfGO& theSubShapes);
51
52   void UnionIDs (GEOM::GEOM_Object_ptr theGroup, const GEOM::ListOfLong& theSubShapes);
53
54   void DifferenceIDs (GEOM::GEOM_Object_ptr theGroup, const GEOM::ListOfLong& theSubShapes);
55
56   CORBA::Long GetType (GEOM::GEOM_Object_ptr theGroup);
57   
58   GEOM::GEOM_Object_ptr GetMainShape (GEOM::GEOM_Object_ptr theGroup);
59
60   GEOM::ListOfLong* GetObjects (GEOM::GEOM_Object_ptr theGroup);
61
62   ::GEOMImpl_IGroupOperations* GetOperations()
63   { return (::GEOMImpl_IGroupOperations*)GetImpl(); }
64 };
65
66 #endif