Salome HOME
Fix for bug Bug IPAL20288 (4x: CRASH after trying to build a sketch).
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ClsfBox.hxx
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 #ifndef _GEOMAlgo_ClsfBox_HeaderFile
21 #define _GEOMAlgo_ClsfBox_HeaderFile
22
23 #ifndef _Standard_HeaderFile
24 #include <Standard.hxx>
25 #endif
26 #ifndef _Handle_GEOMAlgo_ClsfBox_HeaderFile
27 #include <Handle_GEOMAlgo_ClsfBox.hxx>
28 #endif
29
30 #ifndef _TopoDS_Shape_HeaderFile
31 #include <TopoDS_Shape.hxx>
32 #endif
33 #ifndef _GeomAdaptor_Surface_HeaderFile
34 #include <GeomAdaptor_Surface.hxx>
35 #endif
36 #ifndef _GEOMAlgo_Clsf_HeaderFile
37 #include <GEOMAlgo_Clsf.hxx>
38 #endif
39 #ifndef _Standard_Boolean_HeaderFile
40 #include <Standard_Boolean.hxx>
41 #endif
42 #ifndef _Handle_Geom_Curve_HeaderFile
43 #include <Handle_Geom_Curve.hxx>
44 #endif
45 #ifndef _Handle_Geom_Surface_HeaderFile
46 #include <Handle_Geom_Surface.hxx>
47 #endif
48 class TopoDS_Shape;
49 class Geom_Curve;
50 class Geom_Surface;
51
52
53
54 class GEOMAlgo_ClsfBox : public GEOMAlgo_Clsf {
55
56 public:
57  // Methods PUBLIC
58  // 
59
60
61 Standard_EXPORT GEOMAlgo_ClsfBox();
62 Standard_EXPORT virtual ~GEOMAlgo_ClsfBox();
63
64
65 Standard_EXPORT   void SetBox(const TopoDS_Shape& aS) ;
66
67
68 Standard_EXPORT  const TopoDS_Shape& Box() const;
69
70
71 Standard_EXPORT virtual  void Perform() ;
72
73
74 Standard_EXPORT virtual  void CheckData() ;
75
76
77 Standard_EXPORT virtual  Standard_Boolean CanBeON(const Handle(Geom_Curve)& aC) const;
78
79
80 Standard_EXPORT virtual  Standard_Boolean CanBeON(const Handle(Geom_Surface)& aST) const;
81 //Standard_EXPORT ~GEOMAlgo_ClsfBox();
82
83
84
85
86  // Type management
87  //
88  Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
89  //Standard_EXPORT Standard_Boolean            IsKind(const Handle(Standard_Type)&) const;
90
91 protected:
92
93  // Methods PROTECTED
94  // 
95
96
97  // Fields PROTECTED
98  //
99 TopoDS_Shape myBox;
100 GeomAdaptor_Surface myGAS[6];
101
102
103 private: 
104
105  // Methods PRIVATE
106  // 
107
108
109  // Fields PRIVATE
110  //
111
112
113 };
114
115
116
117
118
119 // other Inline functions and methods (like "C++: function call" methods)
120 //
121
122
123 #endif