Salome HOME
Porting to OCCT development version: Standard_PI -> M_PI
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_GlueDetector.hxx
1 // Copyright (C) 2007-2011  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 // File:        GEOMAlgo_GlueDetector.hxx
23 // Created:     
24 // Author:      Peter KURNEV
25 //              <pkv@irinox>
26 //
27 #ifndef _GEOMAlgo_GlueDetector_HeaderFile
28 #define _GEOMAlgo_GlueDetector_HeaderFile
29
30 #include <Standard.hxx>
31 #include <Standard_Macro.hxx>
32 #include <GEOMAlgo_GluerAlgo.hxx>
33 #include <TopAbs_ShapeEnum.hxx>
34 #include <GEOMAlgo_PassKeyShape.hxx>
35 #include <GEOMAlgo_Algo.hxx>
36
37 //=======================================================================
38 //function : GEOMAlgo_GlueDetector
39 //purpose  : 
40 //=======================================================================
41 class GEOMAlgo_GlueDetector  : public GEOMAlgo_GluerAlgo, 
42                                public GEOMAlgo_Algo {
43 public:
44   Standard_EXPORT   GEOMAlgo_GlueDetector();
45   
46   Standard_EXPORT virtual ~GEOMAlgo_GlueDetector();
47   
48   Standard_EXPORT virtual  void Perform() ;
49
50 protected:
51   Standard_EXPORT void DetectVertices() ;
52   
53   Standard_EXPORT void DetectEdges() ;
54   
55   Standard_EXPORT void DetectFaces() ;
56   
57   Standard_EXPORT void DetectShapes(const TopAbs_ShapeEnum aType) ;
58   
59   Standard_EXPORT void EdgePassKey(const TopoDS_Edge& aE,
60                                    GEOMAlgo_PassKeyShape& aPK) ;
61   
62   Standard_EXPORT void FacePassKey(const TopoDS_Face& aF,
63                                    GEOMAlgo_PassKeyShape& aPK) ;
64
65 private:
66 };
67 #endif