Salome HOME
Copyrights update
[modules/geom.git] / src / GEOM_I / GEOM_ILocalOperations_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/
19 //
20
21 #ifndef _GEOM_ILocalOperations_i_HeaderFile
22 #define _GEOM_ILocalOperations_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_ILocalOperations.hxx"
32
33 class GEOM_ILocalOperations_i : 
34     public virtual POA_GEOM::GEOM_ILocalOperations,
35     public virtual GEOM_IOperations_i
36 {
37  public:
38   GEOM_ILocalOperations_i (PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine,
39                            ::GEOMImpl_ILocalOperations* theImpl);
40   ~GEOM_ILocalOperations_i();
41
42   GEOM::GEOM_Object_ptr MakeFilletAll   (GEOM::GEOM_Object_ptr theShape,
43                                          CORBA::Double theR);
44   GEOM::GEOM_Object_ptr MakeFilletEdges (GEOM::GEOM_Object_ptr theShape, CORBA::Double theR,
45                                          const GEOM::ListOfLong& theEdges);
46   GEOM::GEOM_Object_ptr MakeFilletFaces (GEOM::GEOM_Object_ptr theShape, CORBA::Double theR,
47                                          const GEOM::ListOfLong& theFaces);
48
49   GEOM::GEOM_Object_ptr MakeChamferAll   (GEOM::GEOM_Object_ptr theShape, CORBA::Double theD);
50   GEOM::GEOM_Object_ptr MakeChamferEdge  (GEOM::GEOM_Object_ptr theShape,
51                                           CORBA::Double theD1, CORBA::Double theD2,
52                                           CORBA::Long theFace1, CORBA::Long theFace2);
53   GEOM::GEOM_Object_ptr MakeChamferFaces (GEOM::GEOM_Object_ptr theShape,
54                                           CORBA::Double theD1, CORBA::Double theD2,
55                                           const GEOM::ListOfLong& theFaces);
56
57   GEOM::GEOM_Object_ptr MakeArchimede (GEOM::GEOM_Object_ptr theShape,
58                                        CORBA::Double theWeight,
59                                        CORBA::Double theWaterDensity,
60                                        CORBA::Double theMeshingDeflection);
61
62   CORBA::Long GetSubShapeIndex (GEOM::GEOM_Object_ptr theShape,
63                                 GEOM::GEOM_Object_ptr theSubShape);
64
65   ::GEOMImpl_ILocalOperations* GetOperations()
66   { return (::GEOMImpl_ILocalOperations*)GetImpl(); }
67 };
68
69 #endif