Salome HOME
Update copyright
[modules/geom.git] / src / GEOMAlgo / BlockFix_BlockFixAPI.hxx
1 // Copyright (C) 2007-2011  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 _BlockFix_BlockFixAPI_HeaderFile
24 #define _BlockFix_BlockFixAPI_HeaderFile
25
26 #ifndef _Standard_HeaderFile
27 #include <Standard.hxx>
28 #endif
29 #ifndef _Handle_BlockFix_BlockFixAPI_HeaderFile
30 #include <Handle_BlockFix_BlockFixAPI.hxx>
31 #endif
32
33 #ifndef _Handle_ShapeBuild_ReShape_HeaderFile
34 #include <Handle_ShapeBuild_ReShape.hxx>
35 #endif
36 #ifndef _TopoDS_Shape_HeaderFile
37 #include <TopoDS_Shape.hxx>
38 #endif
39 #ifndef _Standard_Real_HeaderFile
40 #include <Standard_Real.hxx>
41 #endif
42 #ifndef _MMgt_TShared_HeaderFile
43 #include <MMgt_TShared.hxx>
44 #endif
45
46 class ShapeBuild_ReShape;
47 class TopoDS_Shape;
48
49
50 class BlockFix_BlockFixAPI : public MMgt_TShared
51 {
52 public:
53   void* operator new(size_t,void* anAddress) 
54   {
55     return anAddress;
56   }
57   void* operator new(size_t size) 
58   { 
59     return Standard::Allocate(size); 
60   }
61   void  operator delete(void *anAddress) 
62   { 
63     if (anAddress) Standard::Free((Standard_Address&)anAddress); 
64   }
65
66   // Methods PUBLIC
67   // 
68   Standard_EXPORT BlockFix_BlockFixAPI();
69   void SetShape(const TopoDS_Shape& Shape);
70   Standard_EXPORT   void Perform();
71   TopoDS_Shape Shape() const;
72   Handle_ShapeBuild_ReShape& Context();
73   Standard_Real& Tolerance();
74   Standard_Integer& OptimumNbFaces();
75   Standard_EXPORT ~BlockFix_BlockFixAPI();
76
77   // Type management
78   //
79   Standard_EXPORT friend Handle_Standard_Type& BlockFix_BlockFixAPI_Type_();
80   Standard_EXPORT const Handle(Standard_Type)& DynamicType() const;
81   Standard_EXPORT Standard_Boolean             IsKind(const Handle(Standard_Type)&) const;
82
83 private: 
84   // Fields PRIVATE
85   //
86   Handle_ShapeBuild_ReShape myContext;
87   TopoDS_Shape myShape;
88   Standard_Real myTolerance;
89   Standard_Integer myOptimumNbFaces;
90 };
91
92 #include <BlockFix_BlockFixAPI.lxx>
93
94 #endif