Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ShapeSet.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 #ifndef _GEOMAlgo_ShapeSet_HeaderFile
21 #define _GEOMAlgo_ShapeSet_HeaderFile
22
23 #ifndef _TopTools_MapOfOrientedShape_HeaderFile
24 #include <TopTools_MapOfOrientedShape.hxx>
25 #endif
26 #ifndef _TopTools_ListOfShape_HeaderFile
27 #include <TopTools_ListOfShape.hxx>
28 #endif
29 #ifndef _TopAbs_ShapeEnum_HeaderFile
30 #include <TopAbs_ShapeEnum.hxx>
31 #endif
32 #ifndef _Standard_Boolean_HeaderFile
33 #include <Standard_Boolean.hxx>
34 #endif
35 class TopTools_ListOfShape;
36 class TopoDS_Shape;
37
38
39 #ifndef _Standard_HeaderFile
40 #include <Standard.hxx>
41 #endif
42 #ifndef _Standard_Macro_HeaderFile
43 #include <Standard_Macro.hxx>
44 #endif
45
46 //! Implementation some formal <br>
47 //!          opereations with Set of shapes <br>
48 class GEOMAlgo_ShapeSet  {
49
50 public:
51
52     void* operator new(size_t,void* anAddress) 
53       {
54         return anAddress;
55       }
56     void* operator new(size_t size) 
57       { 
58         return Standard::Allocate(size); 
59       }
60     void  operator delete(void *anAddress) 
61       { 
62         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
63       }
64  // Methods PUBLIC
65  // 
66
67 //! Empty constructor <br>
68 Standard_EXPORT GEOMAlgo_ShapeSet();
69
70 //! Adds shapes from the list theLS to the Set <br>
71 Standard_EXPORT   void Add(const TopTools_ListOfShape& theLS) ;
72
73 //! Adds shape theShape to the Set <br>
74 Standard_EXPORT   void Add(const TopoDS_Shape& theShape) ;
75
76 //! Adds sub-shapes of shape theShape, <br>
77 //!          that have type theType to the Set <br>
78 Standard_EXPORT   void Add(const TopoDS_Shape& theShape,const TopAbs_ShapeEnum theType) ;
79
80 //! Removes shapes of theSet from the Set <br>
81 Standard_EXPORT   void Subtract(const GEOMAlgo_ShapeSet& theSet) ;
82
83 //! Clears internal fields <br>
84 Standard_EXPORT   void Clear() ;
85
86 //! Returns True if the Set contains <br>
87 //!          all shapes of theSet <br>
88 Standard_EXPORT   Standard_Boolean Contains(const GEOMAlgo_ShapeSet& theSet) const;
89
90 //! Returns the Set <br>
91 Standard_EXPORT  const TopTools_ListOfShape& GetSet() const;
92
93
94
95
96
97 protected:
98
99  // Methods PROTECTED
100  // 
101
102
103  // Fields PROTECTED
104  //
105 TopTools_MapOfOrientedShape myMap;
106 TopTools_ListOfShape myList;
107
108
109 private: 
110
111  // Methods PRIVATE
112  // 
113
114
115  // Fields PRIVATE
116  //
117
118
119 };
120
121
122
123
124
125 // other Inline functions and methods (like "C++: function call" methods)
126 //
127
128
129 #endif