/src/contrib/geom-6.3.1.8/inc/GEOMAlgo_GlueDetector.hxx

https://gitlab.com/tylerluo/pythonocc · C++ Header · 67 lines · 26 code · 11 blank · 30 comment · 0 complexity · 071638352dc231179ce89689409005c2 MD5 · raw file

  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. #include <Standard.hxx>
  30. #include <Standard_Macro.hxx>
  31. #include <GEOMAlgo_GluerAlgo.hxx>
  32. #include <TopAbs_ShapeEnum.hxx>
  33. #include <GEOMAlgo_PassKeyShape.hxx>
  34. #include <GEOMAlgo_Algo.hxx>
  35. //=======================================================================
  36. //function : GEOMAlgo_GlueDetector
  37. //purpose :
  38. //=======================================================================
  39. class GEOMAlgo_GlueDetector : public GEOMAlgo_GluerAlgo,
  40. public GEOMAlgo_Algo {
  41. public:
  42. Standard_EXPORT GEOMAlgo_GlueDetector();
  43. Standard_EXPORT virtual ~GEOMAlgo_GlueDetector();
  44. Standard_EXPORT virtual void Perform() ;
  45. protected:
  46. Standard_EXPORT void DetectVertices() ;
  47. Standard_EXPORT void DetectEdges() ;
  48. Standard_EXPORT void DetectFaces() ;
  49. Standard_EXPORT void DetectShapes(const TopAbs_ShapeEnum aType) ;
  50. Standard_EXPORT void EdgePassKey(const TopoDS_Edge& aE,
  51. GEOMAlgo_PassKeyShape& aPK) ;
  52. Standard_EXPORT void FacePassKey(const TopoDS_Face& aF,
  53. GEOMAlgo_PassKeyShape& aPK) ;
  54. private:
  55. };
  56. #endif