Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / GEOMImpl / GEOMImpl_Fillet1dDriver.hxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18
19 //  File   : GEOMImpl_Fillet1dDriver.ixx
20 //  Module : GEOMImpl
21
22 #ifndef _GEOMImpl_Fillet1dDriver_HeaderFile
23 #define _GEOMImpl_Fillet1dDriver_HeaderFile
24
25 #ifndef _TColStd_SequenceOfExtendedString_HeaderFile
26 #include <TColStd_SequenceOfExtendedString.hxx>
27 #endif
28 #ifndef _Standard_TypeMismatch_HeaderFile
29 #include <Standard_TypeMismatch.hxx>
30 #endif
31
32 #ifndef _Standard_HeaderFile
33 #include <Standard.hxx>
34 #endif
35
36 #ifndef _Standard_Macro_HeaderFile
37 #include <Standard_Macro.hxx>
38 #endif
39 #ifndef _Standard_HeaderFile
40 #include <Standard.hxx>
41 #endif
42 #ifndef _Standard_GUID_HeaderFile
43 #include <Standard_GUID.hxx>
44 #endif 
45
46 #ifndef _Handle_TFunction_Driver_HeaderFile
47 #include <Handle_TFunction_Driver.hxx>
48 #endif
49
50 #include <TopoDS_Wire.hxx>
51 #include <TopTools_ListOfShape.hxx>
52
53 class Standard_Transient;
54 class Handle_Standard_Type;
55 class Handle(TFunction_Driver);
56 class GEOMImpl_Fillet1dDriver;
57
58 Standard_EXPORT Handle_Standard_Type& STANDARD_TYPE(GEOMImpl_Fillet1dDriver);
59
60 class Handle(GEOMImpl_Fillet1dDriver) : public Handle(TFunction_Driver) {
61   public:
62     inline void* operator new(size_t,void* anAddress) 
63       {
64         return anAddress;
65       }
66     inline void* operator new(size_t size) 
67       { 
68         return Standard::Allocate(size); 
69       }
70     inline void  operator delete(void *anAddress) 
71       { 
72         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
73       }
74
75     Handle(GEOMImpl_Fillet1dDriver)():Handle(TFunction_Driver)() {} 
76     Handle(GEOMImpl_Fillet1dDriver)(const Handle(GEOMImpl_Fillet1dDriver)& aHandle) : Handle(TFunction_Driver)(aHandle) 
77      {
78      }
79
80     Handle(GEOMImpl_Fillet1dDriver)(const GEOMImpl_Fillet1dDriver* anItem) : Handle(TFunction_Driver)((TFunction_Driver *)anItem) 
81      {
82      }
83
84     Handle(GEOMImpl_Fillet1dDriver)& operator=(const Handle(GEOMImpl_Fillet1dDriver)& aHandle)
85      {
86       Assign(aHandle.Access());
87       return *this;
88      }
89
90     Handle(GEOMImpl_Fillet1dDriver)& operator=(const GEOMImpl_Fillet1dDriver* anItem)
91      {
92       Assign((Standard_Transient *)anItem);
93       return *this;
94      }
95
96     GEOMImpl_Fillet1dDriver* operator->() 
97      {
98       return (GEOMImpl_Fillet1dDriver *)ControlAccess();
99      }
100
101     GEOMImpl_Fillet1dDriver* operator->() const 
102      {
103       return (GEOMImpl_Fillet1dDriver *)ControlAccess();
104      }
105
106    Standard_EXPORT ~Handle(GEOMImpl_Fillet1dDriver)() {};
107  
108    Standard_EXPORT static const Handle(GEOMImpl_Fillet1dDriver) DownCast(const Handle(Standard_Transient)& AnObject);
109 };
110
111 #ifndef _TFunction_Driver_HeaderFile
112 #include <TFunction_Driver.hxx>
113 #endif
114 #ifndef _TFunction_Logbook_HeaderFile
115 #include <TFunction_Logbook.hxx>
116 #endif
117 #ifndef _Standard_CString_HeaderFile
118 #include <Standard_CString.hxx>
119 #endif
120
121 class TColStd_SequenceOfExtendedString;
122
123
124 class GEOMImpl_Fillet1dDriver : public TFunction_Driver {
125
126 public:
127
128   inline void* operator new(size_t,void* anAddress) 
129   {
130     return anAddress;
131   }
132   inline void* operator new(size_t size) 
133   { 
134     return Standard::Allocate(size); 
135   }
136   inline void  operator delete(void *anAddress) 
137   { 
138     if (anAddress) Standard::Free((Standard_Address&)anAddress); 
139   }
140
141   // Methods PUBLIC
142   // 
143   Standard_EXPORT GEOMImpl_Fillet1dDriver();
144   Standard_EXPORT ~GEOMImpl_Fillet1dDriver() {};
145
146   Standard_EXPORT static const Standard_GUID& GetID();
147
148   Standard_EXPORT virtual  Standard_Integer Execute(TFunction_Logbook& log) const; 
149   Standard_EXPORT virtual void Validate(TFunction_Logbook&) const {}
150   Standard_EXPORT Standard_Boolean MustExecute(const TFunction_Logbook&) const { return Standard_True; }
151
152   // Type management
153   //
154   Standard_EXPORT friend Handle_Standard_Type& GEOMImpl_Fillet1dDriver_Type_();
155   Standard_EXPORT const Handle(Standard_Type)& DynamicType() const 
156   { return STANDARD_TYPE(GEOMImpl_Fillet1dDriver) ; }
157   Standard_EXPORT Standard_Boolean IsKind(const Handle(Standard_Type)& AType) const
158   { return (STANDARD_TYPE(GEOMImpl_Fillet1dDriver) == AType || TFunction_Driver::IsKind(AType)); } 
159
160 private:
161
162   Standard_EXPORT bool MakeFillet(const TopoDS_Wire&, const TopTools_ListOfShape&,
163                                   const Standard_Real, bool, TopoDS_Wire&) const; 
164
165 };
166
167 #endif