Salome HOME
Fix problem with partition (merge fix of PKV from BR_QT4_Dev branch)
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ClsfSurf.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_ClsfSurf_HeaderFile
21 #define _GEOMAlgo_ClsfSurf_HeaderFile
22
23 #ifndef _Standard_HeaderFile
24 #include <Standard.hxx>
25 #endif
26 #ifndef _Handle_GEOMAlgo_ClsfSurf_HeaderFile
27 #include <Handle_GEOMAlgo_ClsfSurf.hxx>
28 #endif
29
30 #ifndef _Handle_Geom_Surface_HeaderFile
31 #include <Handle_Geom_Surface.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 class Geom_Surface;
46 class Geom_Curve;
47
48
49
50 class GEOMAlgo_ClsfSurf : public GEOMAlgo_Clsf {
51
52 public:
53  // Methods PUBLIC
54  // 
55
56
57 Standard_EXPORT GEOMAlgo_ClsfSurf();
58 Standard_EXPORT virtual ~GEOMAlgo_ClsfSurf();
59
60
61 Standard_EXPORT   void SetSurface(const Handle(Geom_Surface)& aS) ;
62
63
64 Standard_EXPORT  const Handle_Geom_Surface& Surface() const;
65
66
67 Standard_EXPORT virtual  void Perform() ;
68
69
70 Standard_EXPORT virtual  void CheckData() ;
71
72
73 Standard_EXPORT virtual  Standard_Boolean CanBeON(const Handle(Geom_Curve)& aC) const;
74
75
76 Standard_EXPORT virtual  Standard_Boolean CanBeON(const Handle(Geom_Surface)& aST) const;
77 //Standard_EXPORT ~GEOMAlgo_ClsfSurf();
78
79
80
81
82  // Type management
83  //
84  Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
85  //Standard_EXPORT Standard_Boolean            IsKind(const Handle(Standard_Type)&) const;
86
87 protected:
88
89  // Methods PROTECTED
90  // 
91
92
93  // Fields PROTECTED
94  //
95 Handle_Geom_Surface myS;
96 GeomAdaptor_Surface myGAS;
97
98
99 private: 
100
101  // Methods PRIVATE
102  // 
103
104
105  // Fields PRIVATE
106  //
107
108
109 };
110
111
112
113
114
115 // other Inline functions and methods (like "C++: function call" methods)
116 //
117
118
119 #endif