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