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