Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/geom.git] / src / ShHealOper / ShHealOper_RemoveInternalWires.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //
21 // File:      ShHealOper_RemoveInternalWires.hxx
22 // Created:   26.04.04 11:22:26
23 // Author:    Galina KULIKOVA
24
25
26 #ifndef ShHealOper_RemoveInternalWires_HeaderFile
27 #define ShHealOper_RemoveInternalWires_HeaderFile
28
29 #include <MMgt_TShared.hxx>
30 #include <ShHealOper_Tool.hxx>
31 #include <TopoDS_Shape.hxx>
32 #include <TopTools_SequenceOfShape.hxx>
33 #include <TopoDS_Face.hxx>
34 #include <TopoDS_Wire.hxx>
35 #include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
36
37 ///  Class ShHealOper_RemoveInternalWires
38 // Intended for removing internal wires from faces.
39
40 class ShHealOper_RemoveInternalWires : public ShHealOper_Tool
41 {
42  public:
43   // ---------- PUBLIC METHODS ----------
44
45   /// Empty constructor
46   Standard_EXPORT ShHealOper_RemoveInternalWires () {}
47
48   /// Copy constructor
49   Standard_EXPORT ShHealOper_RemoveInternalWires (const TopoDS_Shape& theShape);
50   //Method for initalization by whole shape.
51   
52   Standard_EXPORT virtual void Init(const TopoDS_Shape& theShape);
53   //Method for initalization by whole shape.
54   
55   Standard_EXPORT Standard_Boolean Remove();
56   //Removes all internal wires from all faces of the shape
57   
58   Standard_EXPORT Standard_Boolean Remove(const TopTools_SequenceOfShape& theRemovedShapes);
59   //Removes wires specified in the sequence of shapes or internal wires 
60   //belonging faces  specified in the sequence of shape.
61   
62
63  private:
64   // ---------- PRIVATE METHODS ----------
65   
66   Standard_Boolean removeWire(const TopoDS_Face& theFace, 
67                               const TopoDS_Wire& theWire);
68   void fixShape(const TopoDS_Shape& theShape );
69
70  private:
71   // ---------- PRIVATE FIELDS ----------
72   TopTools_IndexedDataMapOfShapeListOfShape myMapWiresFace;
73
74
75
76  public:
77 // Declaration of CASCADE RTTI
78 //DEFINE_STANDARD_RTTI (ShHealOper_RemoveInternalWires)
79 };
80
81 // Definition of HANDLE object using Standard_DefineHandle.hxx
82 //DEFINE_STANDARD_HANDLE (ShHealOper_RemoveInternalWires, )
83
84
85 #endif