Salome HOME
*** empty log message ***
[modules/geom.git] / src / GEOM_I / GEOM_IBooleanOperations_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_IBooleanOperations_i_HeaderFile
22 #define _GEOM_IBooleanOperations_i_HeaderFile
23
24 #include "GEOMImpl_Gen.hxx"
25
26 #include <SALOMEconfig.h>
27
28 #include CORBA_SERVER_HEADER(GEOM_Gen)
29 #include "GEOM_IOperations_i.hh"
30 #include "GEOM_Object_i.hh"
31
32 #include "GEOMImpl_IBooleanOperations.hxx"
33
34 class GEOM_I_EXPORT GEOM_IBooleanOperations_i : 
35     public virtual POA_GEOM::GEOM_IBooleanOperations,
36     public virtual GEOM_IOperations_i
37 {
38  public:
39   GEOM_IBooleanOperations_i (PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine,
40                             ::GEOMImpl_IBooleanOperations* theImpl);
41   ~GEOM_IBooleanOperations_i();
42
43   GEOM::GEOM_Object_ptr MakeBoolean (GEOM::GEOM_Object_ptr theShape1,
44                                      GEOM::GEOM_Object_ptr theShape2,
45                                      CORBA::Long           theOp);
46
47   GEOM::GEOM_Object_ptr MakePartition (const GEOM::ListOfGO&   theShapes,
48                                        const GEOM::ListOfGO&   theTools,
49                                        const GEOM::ListOfGO&   theKeepInside,
50                                        const GEOM::ListOfGO&   theRemoveInside,
51                                        CORBA::Short            theLimit,
52                                        CORBA::Boolean          theRemoveWebs,
53                                        const GEOM::ListOfLong& theMaterials);
54
55   GEOM::GEOM_Object_ptr MakePartitionNonSelfIntersectedShape (const GEOM::ListOfGO&   theShapes,
56                                                               const GEOM::ListOfGO&   theTools,
57                                                               const GEOM::ListOfGO&   theKeepInside,
58                                                               const GEOM::ListOfGO&   theRemoveInside,
59                                                               CORBA::Short            theLimit,
60                                                               CORBA::Boolean          theRemoveWebs,
61                                                               const GEOM::ListOfLong& theMaterials);
62
63
64   GEOM::GEOM_Object_ptr MakeHalfPartition (GEOM::GEOM_Object_ptr theShape,
65                                            GEOM::GEOM_Object_ptr thePlane);
66
67   ::GEOMImpl_IBooleanOperations* GetOperations()
68   { return (::GEOMImpl_IBooleanOperations*)GetImpl(); }
69 };
70
71 #endif