Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-03 08:24:32

0001 // Created by: Peter KURNEV
0002 // Copyright (c) 2010-2014 OPEN CASCADE SAS
0003 // Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
0004 // Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT,
0005 //                         EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
0006 //
0007 // This file is part of Open CASCADE Technology software library.
0008 //
0009 // This library is free software; you can redistribute it and/or modify it under
0010 // the terms of the GNU Lesser General Public License version 2.1 as published
0011 // by the Free Software Foundation, with special exception defined in the file
0012 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0013 // distribution for complete text of the license and disclaimer of any warranty.
0014 //
0015 // Alternatively, this file may be used under the terms of Open CASCADE
0016 // commercial license or contractual agreement.
0017 
0018 #ifndef _BOPAlgo_WireEdgeSet_HeaderFile
0019 #define _BOPAlgo_WireEdgeSet_HeaderFile
0020 
0021 #include <Standard.hxx>
0022 #include <Standard_DefineAlloc.hxx>
0023 #include <Standard_Handle.hxx>
0024 
0025 #include <NCollection_BaseAllocator.hxx>
0026 #include <TopoDS_Face.hxx>
0027 #include <TopTools_ListOfShape.hxx>
0028 class TopoDS_Face;
0029 class TopoDS_Shape;
0030 
0031 class BOPAlgo_WireEdgeSet
0032 {
0033 public:
0034   DEFINE_STANDARD_ALLOC
0035 
0036   BOPAlgo_WireEdgeSet();
0037   virtual ~BOPAlgo_WireEdgeSet();
0038 
0039   BOPAlgo_WireEdgeSet(const Handle(NCollection_BaseAllocator)& theAllocator);
0040 
0041   void Clear();
0042 
0043   void SetFace(const TopoDS_Face& aF);
0044 
0045   const TopoDS_Face& Face() const;
0046 
0047   void AddStartElement(const TopoDS_Shape& sS);
0048 
0049   const TopTools_ListOfShape& StartElements() const;
0050 
0051   void AddShape(const TopoDS_Shape& sS);
0052 
0053   const TopTools_ListOfShape& Shapes() const;
0054 
0055 protected:
0056   TopoDS_Face          myFace;
0057   TopTools_ListOfShape myStartShapes;
0058   TopTools_ListOfShape myShapes;
0059 
0060 private:
0061 };
0062 
0063 #include <BOPAlgo_WireEdgeSet.lxx>
0064 
0065 #endif // _BOPAlgo_WireEdgeSet_HeaderFile