]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMAlgo/GEOMAlgo_Splitter.hxx
Salome HOME
*** empty log message ***
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_Splitter.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_Splitter_HeaderFile
21 #define _GEOMAlgo_Splitter_HeaderFile
22
23 #ifndef _TopTools_ListOfShape_HeaderFile
24 #include <TopTools_ListOfShape.hxx>
25 #endif
26 #ifndef _TopTools_MapOfShape_HeaderFile
27 #include <TopTools_MapOfShape.hxx>
28 #endif
29 #ifndef _TopAbs_ShapeEnum_HeaderFile
30 #include <TopAbs_ShapeEnum.hxx>
31 #endif
32 #ifndef _GEOMAlgo_Builder_HeaderFile
33 #include <GEOMAlgo_Builder.hxx>
34 #endif
35 class TopoDS_Shape;
36 class TopTools_ListOfShape;
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 of Gluing Operation Algorithm (GA) <br>
47 class GEOMAlgo_Splitter  : public GEOMAlgo_Builder {
48
49 public:
50
51     void* operator new(size_t,void* anAddress) 
52       {
53         return anAddress;
54       }
55     void* operator new(size_t size) 
56       { 
57         return Standard::Allocate(size); 
58       }
59     void  operator delete(void *anAddress) 
60       { 
61         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
62       }
63  // Methods PUBLIC
64  // 
65
66 //!  Empty constructor <br>
67 Standard_EXPORT GEOMAlgo_Splitter();
68 Standard_EXPORT virtual ~GEOMAlgo_Splitter();
69
70 //!  Clears internal fields and arguments <br>
71 Standard_EXPORT virtual  void Clear() ;
72
73 //!  Adds Tool argument theShape of the operation <br>
74 Standard_EXPORT virtual  void AddTool(const TopoDS_Shape& theShape) ;
75
76 //!  Returns the arguments of the operation <br>
77 Standard_EXPORT  const TopTools_ListOfShape& Tools() const;
78
79
80 Standard_EXPORT   void SetLimit(const TopAbs_ShapeEnum aLimit) ;
81
82
83 Standard_EXPORT   TopAbs_ShapeEnum Limit() const;
84
85 //!  Adds Tool arguments of the operation as <br>
86 //!           shapes of upper level of container shape theShape <br>
87 //! ===================================================== <br>
88 Standard_EXPORT   void AddToolCompound(const TopoDS_Shape& theShape) ;
89
90
91
92
93
94 protected:
95
96  // Methods PROTECTED
97  // 
98
99 //! Build the resulting shapes of type theType <br>
100 Standard_EXPORT virtual  void BuildResult(const TopAbs_ShapeEnum theType) ;
101
102 //!  Provides post-tratment actions <br>
103 Standard_EXPORT virtual  void PostTreat() ;
104
105
106  // Fields PROTECTED
107  //
108 TopTools_ListOfShape myTools;
109 TopTools_MapOfShape myMapTools;
110 TopAbs_ShapeEnum myLimit;
111
112
113 private: 
114
115  // Methods PRIVATE
116  // 
117
118
119  // Fields PRIVATE
120  //
121
122
123 };
124
125
126
127
128
129 // other Inline functions and methods (like "C++: function call" methods)
130 //
131
132
133 #endif