Salome HOME
Merge from V5_1_4_BR 07/05/2010
[modules/geom.git] / src / NMTTools / NMTTools_DSFiller.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 _NMTTools_DSFiller_HeaderFile
24 #define _NMTTools_DSFiller_HeaderFile
25
26 #ifndef _TopoDS_Shape_HeaderFile
27 #include <TopoDS_Shape.hxx>
28 #endif
29 #ifndef _NMTDS_PShapesDataStructure_HeaderFile
30 #include <NMTDS_PShapesDataStructure.hxx>
31 #endif
32 #ifndef _BOPTools_PInterferencePool_HeaderFile
33 #include <BOPTools_PInterferencePool.hxx>
34 #endif
35 #ifndef _NMTTools_PPaveFiller_HeaderFile
36 #include <NMTTools_PPaveFiller.hxx>
37 #endif
38 #ifndef _Standard_Boolean_HeaderFile
39 #include <Standard_Boolean.hxx>
40 #endif
41 class TopoDS_Shape;
42 class NMTDS_ShapesDataStructure;
43 class BOPTools_InterferencePool;
44 class NMTTools_PaveFiller;
45
46
47 #ifndef _Standard_HeaderFile
48 #include <Standard.hxx>
49 #endif
50 #ifndef _Standard_Macro_HeaderFile
51 #include <Standard_Macro.hxx>
52 #endif
53
54
55 class NMTTools_DSFiller  {
56
57 public:
58
59     void* operator new(size_t,void* anAddress) 
60       {
61         return anAddress;
62       }
63     void* operator new(size_t size) 
64       { 
65         return Standard::Allocate(size); 
66       }
67     void  operator delete(void *anAddress) 
68       { 
69         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
70       }
71  // Methods PUBLIC
72  // 
73
74
75 Standard_EXPORT NMTTools_DSFiller();
76
77 //! Destructor <br>
78 //! <br>
79 //!  Selectors/Modifiers <br>
80 Standard_EXPORT   void Destroy() ;
81 ~NMTTools_DSFiller()
82 {
83   Destroy();
84 }
85
86
87
88 Standard_EXPORT   void SetCompositeShape(const TopoDS_Shape& aS) ;
89
90
91 Standard_EXPORT  const TopoDS_Shape& CompositeShape() const;
92
93
94 Standard_EXPORT   void SetNewFiller(const Standard_Boolean aFlag) const;
95
96
97 Standard_EXPORT   Standard_Boolean IsNewFiller() const;
98
99
100 Standard_EXPORT   void Perform() ;
101
102
103 Standard_EXPORT  const NMTDS_ShapesDataStructure& DS() const;
104
105
106 Standard_EXPORT  const BOPTools_InterferencePool& InterfPool() const;
107
108
109 Standard_EXPORT   Standard_Boolean IsDone() const;
110
111
112 Standard_EXPORT  const NMTTools_PaveFiller& PaveFiller() const;
113
114
115 Standard_EXPORT   NMTTools_PaveFiller& ChangePaveFiller() ;
116
117
118
119
120
121 protected:
122
123  // Methods PROTECTED
124  // 
125
126
127 Standard_EXPORT   void Clear() ;
128
129
130  // Fields PROTECTED
131  //
132 TopoDS_Shape myCompositeShape;
133 NMTDS_PShapesDataStructure myDS;
134 BOPTools_PInterferencePool myInterfPool;
135 NMTTools_PPaveFiller myPaveFiller;
136 Standard_Boolean myIsDone;
137 Standard_Boolean myIsNewFiller;
138
139
140 private: 
141
142  // Methods PRIVATE
143  // 
144
145
146  // Fields PRIVATE
147  //
148
149
150 };
151
152
153
154
155
156 // other Inline functions and methods (like "C++: function call" methods)
157 //
158
159
160 #endif