Salome HOME
This commit was generated by cvs2git to create tag 'TRIPOLI_323'.
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ClsfSurf.hxx
1 // Copyright (C) 2007-2012  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.
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_ClsfSurf.hxx
24 // Created:     Wed Nov 22 10:41:47 2006
25 // Author:      Peter KURNEV
26 //              <pkv@irinox>
27 //
28 #ifndef _GEOMAlgo_ClsfSurf_HeaderFile
29 #define _GEOMAlgo_ClsfSurf_HeaderFile
30
31 #include <Standard.hxx>
32 #include <Standard_DefineHandle.hxx>
33 //#include <Handle_GEOMAlgo_ClsfSurf.hxx>
34 #include <Handle_Geom_Surface.hxx>
35 #include <GeomAdaptor_Surface.hxx>
36 #include <GEOMAlgo_Clsf.hxx>
37 #include <Standard_Boolean.hxx>
38 #include <Handle_Geom_Curve.hxx>
39 #include <Geom_Surface.hxx>
40 #include <Geom_Curve.hxx>
41
42 DEFINE_STANDARD_HANDLE(GEOMAlgo_ClsfSurf, GEOMAlgo_Clsf)
43
44 //=======================================================================
45 // class   : GEOMAlgo_ClsfSurf
46 //purpose  :
47 //=======================================================================
48 class GEOMAlgo_ClsfSurf : public GEOMAlgo_Clsf
49 {
50  public:
51   Standard_EXPORT
52     GEOMAlgo_ClsfSurf();
53
54   Standard_EXPORT
55     virtual ~GEOMAlgo_ClsfSurf();
56
57   Standard_EXPORT
58     void SetSurface(const Handle(Geom_Surface)& aS) ;
59
60   Standard_EXPORT
61     const Handle_Geom_Surface& Surface() const;
62
63   Standard_EXPORT
64     virtual  void Perform() ;
65
66   Standard_EXPORT
67     virtual  void CheckData() ;
68
69   Standard_EXPORT
70     virtual  Standard_Boolean CanBeON(const Handle(Geom_Curve)& aC) const;
71
72   Standard_EXPORT
73     virtual  Standard_Boolean CanBeON(const Handle(Geom_Surface)& aST) const;
74
75   DEFINE_STANDARD_RTTI(GEOMAlgo_ClsfSurf);
76
77  protected:
78   Handle_Geom_Surface myS;
79   GeomAdaptor_Surface myGAS;
80 };
81 #endif