Salome HOME
This commit was generated by cvs2git to create tag 'TRIPOLI_323'.
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_WireEdgeSet.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_WireEdgeSet.hxx
24 // Created:
25 // Author:      Peter KURNEV
26 //              <pkv@irinox>
27 //
28
29 #ifndef _GEOMAlgo_WireEdgeSet_HeaderFile
30 #define _GEOMAlgo_WireEdgeSet_HeaderFile
31
32 #include <Standard.hxx>
33 #include <Standard_Macro.hxx>
34 #include <TopoDS_Face.hxx>
35 #include <TopTools_ListOfShape.hxx>
36 #include <TopoDS_Shape.hxx>
37
38 //=======================================================================
39 //function : GEOMAlgo_WireEdgeSet
40 //purpose  :
41 //=======================================================================
42 class GEOMAlgo_WireEdgeSet  {
43  public:
44   Standard_EXPORT
45     GEOMAlgo_WireEdgeSet();
46
47   Standard_EXPORT
48     void Clear() ;
49
50   Standard_EXPORT
51     void SetFace(const TopoDS_Face& aF) ;
52
53   Standard_EXPORT
54     const TopoDS_Face& Face() const;
55
56   Standard_EXPORT
57     void AddStartElement(const TopoDS_Shape& sS) ;
58
59   Standard_EXPORT
60     const TopTools_ListOfShape& StartElements() const;
61
62   Standard_EXPORT
63     void AddShape(const TopoDS_Shape& sS) ;
64
65   Standard_EXPORT
66     const TopTools_ListOfShape& Shapes() const;
67
68 protected:
69   TopoDS_Face myFace;
70   TopTools_ListOfShape myStartShapes;
71   TopTools_ListOfShape myShapes;
72 };
73 #endif