Salome HOME
Avoid linking to the native omniORB
[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 _Standard_Integer_HeaderFile
33 #include <Standard_Integer.hxx>
34 #endif
35 #ifndef _GEOMAlgo_Builder_HeaderFile
36 #include <GEOMAlgo_Builder.hxx>
37 #endif
38 class TopoDS_Shape;
39 class TopTools_ListOfShape;
40
41
42 #ifndef _Standard_HeaderFile
43 #include <Standard.hxx>
44 #endif
45 #ifndef _Standard_Macro_HeaderFile
46 #include <Standard_Macro.hxx>
47 #endif
48
49 //! Implementation of Gluing Operation Algorithm (GA) <br>
50 class GEOMAlgo_Splitter  : public GEOMAlgo_Builder {
51
52 public:
53
54     void* operator new(size_t,void* anAddress) 
55       {
56         return anAddress;
57       }
58     void* operator new(size_t size) 
59       { 
60         return Standard::Allocate(size); 
61       }
62     void  operator delete(void *anAddress) 
63       { 
64         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
65       }
66  // Methods PUBLIC
67  // 
68
69 //!  Empty constructor <br>
70 Standard_EXPORT GEOMAlgo_Splitter();
71 Standard_EXPORT virtual ~GEOMAlgo_Splitter();
72
73 //!  Clears internal fields and arguments <br>
74 Standard_EXPORT virtual  void Clear() ;
75
76 //!  Adds Tool argument theShape of the operation <br>
77 Standard_EXPORT virtual  void AddTool(const TopoDS_Shape& theShape) ;
78
79 //!  Returns the arguments of the operation <br>
80 Standard_EXPORT  const TopTools_ListOfShape& Tools() const;
81
82
83 Standard_EXPORT   void SetLimit(const TopAbs_ShapeEnum aLimit) ;
84
85
86 Standard_EXPORT   TopAbs_ShapeEnum Limit() const;
87
88
89 Standard_EXPORT   void SetLimitMode(const Standard_Integer aLimitMode) ;
90
91
92 Standard_EXPORT   Standard_Integer LimitMode() const;
93
94 //!  Adds Tool arguments of the operation as <br>
95 //!           shapes of upper level of container shape theShape <br>
96 //! ===================================================== <br>
97 Standard_EXPORT   void AddToolCompound(const TopoDS_Shape& theShape) ;
98
99
100
101
102
103 protected:
104
105  // Methods PROTECTED
106  // 
107
108 //! Build the resulting shapes of type theType <br>
109 Standard_EXPORT virtual  void BuildResult(const TopAbs_ShapeEnum theType) ;
110
111 //!  Provides post-tratment actions <br>
112 Standard_EXPORT virtual  void PostTreat() ;
113
114
115  // Fields PROTECTED
116  //
117 TopTools_ListOfShape myTools;
118 TopTools_MapOfShape myMapTools;
119 TopAbs_ShapeEnum myLimit;
120 Standard_Integer myLimitMode;
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