Salome HOME
Synchronize adm files
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ClsfBox.hxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // File:        GEOMAlgo_ClsfBox.hxx
24 // Created:     Wed Nov 22 10:41:47 2006
25 // Author:      Peter KURNEV
26 //              <pkv@irinox>
27 //
28 #ifndef _GEOMAlgo_ClsfBox_HeaderFile
29 #define _GEOMAlgo_ClsfBox_HeaderFile
30
31 #include <Standard.hxx>
32 #include <Standard_DefineHandle.hxx>
33
34 #include <TopoDS_Shape.hxx>
35 #include <GeomAdaptor_Surface.hxx>
36 #include <GEOMAlgo_Clsf.hxx>
37 #include <Standard_Boolean.hxx>
38 #include <Handle_Geom_Curve.hxx>
39 #include <Handle_Geom_Surface.hxx>
40 #include <Geom_Curve.hxx>
41 #include <Geom_Surface.hxx>
42
43 DEFINE_STANDARD_HANDLE(GEOMAlgo_ClsfBox, GEOMAlgo_Clsf)
44
45 //=======================================================================
46 //function : GEOMAlgo_ClsfBox
47 //purpose  :
48 //=======================================================================
49 class GEOMAlgo_ClsfBox : public GEOMAlgo_Clsf
50 {
51  public:
52   Standard_EXPORT
53     GEOMAlgo_ClsfBox();
54
55   Standard_EXPORT
56     virtual ~GEOMAlgo_ClsfBox();
57
58   Standard_EXPORT
59     void SetBox(const TopoDS_Shape& aS) ;
60
61   Standard_EXPORT
62     const TopoDS_Shape& Box() const;
63
64   Standard_EXPORT
65     virtual  void Perform() ;
66
67   Standard_EXPORT
68     virtual  void CheckData() ;
69
70   Standard_EXPORT
71     virtual  Standard_Boolean CanBeON(const Handle(Geom_Curve)& aC) const;
72
73   Standard_EXPORT
74     virtual  Standard_Boolean CanBeON(const Handle(Geom_Surface)& aST) const;
75
76   DEFINE_STANDARD_RTTI(GEOMAlgo_ClsfBox)
77
78  protected:
79   TopoDS_Shape myBox;
80   GeomAdaptor_Surface myGAS[6];
81
82
83 private:
84
85
86
87
88 };
89
90
91
92
93
94 // other Inline functions and methods (like "C++: function call" methods)
95
96
97 #endif