Salome HOME
Fixed bug in method GetReferncedObject that caused a crash in case if the reference...
[modules/geom.git] / src / GEOM_I / GEOM_ICurvesOperations_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_ICurvesOperations_i_HeaderFile
22 #define _GEOM_ICurvesOperations_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_ICurvesOperations.hxx"
32
33 class GEOM_ICurvesOperations_i : 
34     public virtual POA_GEOM::GEOM_ICurvesOperations,
35     public virtual GEOM_IOperations_i
36 {
37  public:
38   GEOM_ICurvesOperations_i (PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine,
39                             ::GEOMImpl_ICurvesOperations* theImpl);
40   ~GEOM_ICurvesOperations_i();
41
42   GEOM::GEOM_Object_ptr MakeCirclePntVecR (GEOM::GEOM_Object_ptr theCenter,
43                                            GEOM::GEOM_Object_ptr theVector,
44                                            double theR);
45
46   GEOM::GEOM_Object_ptr MakeCircleThreePnt (GEOM::GEOM_Object_ptr thePnt1,
47                                             GEOM::GEOM_Object_ptr thePnt2,
48                                             GEOM::GEOM_Object_ptr thePnt3);
49
50   GEOM::GEOM_Object_ptr MakeEllipse (GEOM::GEOM_Object_ptr theCenter,
51                                      GEOM::GEOM_Object_ptr theVector,
52                                      double theRMajor, double theRMinor);
53
54   GEOM::GEOM_Object_ptr MakeArc (GEOM::GEOM_Object_ptr thePnt1,
55                                  GEOM::GEOM_Object_ptr thePnt2,
56                                  GEOM::GEOM_Object_ptr thePnt3);
57   
58   GEOM::GEOM_Object_ptr MakeArcCenter (GEOM::GEOM_Object_ptr thePnt1,
59                                        GEOM::GEOM_Object_ptr thePnt2,
60                                        GEOM::GEOM_Object_ptr thePnt3,
61                                        bool theSense);
62   
63   GEOM::GEOM_Object_ptr MakePolyline (const GEOM::ListOfGO& thePoints);
64
65   GEOM::GEOM_Object_ptr MakeSplineBezier (const GEOM::ListOfGO& thePoints);
66
67   GEOM::GEOM_Object_ptr MakeSplineInterpolation (const GEOM::ListOfGO& thePoints);
68
69   GEOM::GEOM_Object_ptr MakeSketcher (const char* theCommand, const GEOM::ListOfDouble& theWorkingPlane);
70
71   GEOM::GEOM_Object_ptr MakeSketcherOnPlane (const char* theCommand, GEOM::GEOM_Object_ptr theWorkingPlane);
72
73   ::GEOMImpl_ICurvesOperations* GetOperations()
74   { return (::GEOMImpl_ICurvesOperations*)GetImpl(); }
75 };
76
77 #endif