Salome HOME
untabify
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_WireSplitter.hxx
1 //  Copyright (C) 2007-2008  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 #ifndef _GEOMAlgo_WireSplitter_HeaderFile
23 #define _GEOMAlgo_WireSplitter_HeaderFile
24
25 #ifndef _TopoDS_Face_HeaderFile
26 #include <TopoDS_Face.hxx>
27 #endif
28 #ifndef _Standard_Boolean_HeaderFile
29 #include <Standard_Boolean.hxx>
30 #endif
31 #ifndef _BOPTColStd_ListOfListOfShape_HeaderFile
32 #include <BOPTColStd_ListOfListOfShape.hxx>
33 #endif
34 #ifndef _BOP_IndexedDataMapOfVertexListEdgeInfo_HeaderFile
35 #include <BOP_IndexedDataMapOfVertexListEdgeInfo.hxx>
36 #endif
37 #ifndef _TopTools_ListOfShape_HeaderFile
38 #include <TopTools_ListOfShape.hxx>
39 #endif
40 #ifndef _GEOMAlgo_Algo_HeaderFile
41 #include <GEOMAlgo_Algo.hxx>
42 #endif
43 class TopoDS_Face;
44 class TopTools_ListOfShape;
45 class BOPTColStd_ListOfListOfShape;
46
47
48 #ifndef _Standard_HeaderFile
49 #include <Standard.hxx>
50 #endif
51 #ifndef _Standard_Macro_HeaderFile
52 #include <Standard_Macro.hxx>
53 #endif
54
55
56 //!  the algorithm to split multiconnexed set of edges <br>
57 //!  wires on a face onto simple connexed wires <br>
58 //!  . <br>
59 class GEOMAlgo_WireSplitter  : public GEOMAlgo_Algo {
60
61 public:
62
63     void* operator new(size_t,void* anAddress) 
64       {
65         return anAddress;
66       }
67     void* operator new(size_t size) 
68       { 
69         return Standard::Allocate(size); 
70       }
71     void  operator delete(void *anAddress) 
72       { 
73         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
74       }
75  // Methods PUBLIC
76  // 
77
78
79 Standard_EXPORT GEOMAlgo_WireSplitter();
80 Standard_EXPORT virtual ~GEOMAlgo_WireSplitter();
81
82
83 Standard_EXPORT   void SetFace(const TopoDS_Face& aF) ;
84
85
86 Standard_EXPORT   void SetEdges(const TopTools_ListOfShape& aLE) ;
87
88
89 Standard_EXPORT  const TopTools_ListOfShape& Edges() const;
90
91
92 Standard_EXPORT virtual  void Perform() ;
93
94
95 Standard_EXPORT   Standard_Boolean IsNothingToDo() const;
96
97
98 Standard_EXPORT  const TopoDS_Face& Face() const;
99
100
101 Standard_EXPORT  const BOPTColStd_ListOfListOfShape& Shapes() const;
102
103
104
105
106
107 protected:
108
109  // Methods PROTECTED
110  // 
111
112
113  // Fields PROTECTED
114  //
115 TopoDS_Face myFace;
116 Standard_Boolean myIsDone;
117 Standard_Boolean myNothingToDo;
118 BOPTColStd_ListOfListOfShape myShapes;
119 BOP_IndexedDataMapOfVertexListEdgeInfo mySmartMap;
120 TopTools_ListOfShape myEdges;
121
122
123 private: 
124
125  // Methods PRIVATE
126  // 
127
128
129  // Fields PRIVATE
130  //
131
132
133 };
134
135
136
137
138
139 // other Inline functions and methods (like "C++: function call" methods)
140 //
141
142
143 #endif