]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMAlgo/GEOMAlgo_ShapeAlgo.hxx
Salome HOME
Win32 compliation.
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ShapeAlgo.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 #ifndef _GEOMAlgo_ShapeAlgo_HeaderFile
23 #define _GEOMAlgo_ShapeAlgo_HeaderFile
24
25 #include <GEOMAlgo_Algo.hxx>
26
27 #include <Basics_OCCTVersion.hxx>
28
29 #include <Standard.hxx>
30 #include <Standard_Macro.hxx>
31
32 #include <TopoDS_Shape.hxx>
33
34 #include <Standard_Real.hxx>
35
36 #if OCC_VERSION_LARGE > 0x06050200
37 #include <Handle_IntTools_Context.hxx>
38 #else
39 #include <IntTools_Context.hxx>
40 #endif
41
42 class IntTools_Context;
43 class TopoDS_Shape;
44
45 class GEOMAlgo_ShapeAlgo  : public GEOMAlgo_Algo {
46
47 public:
48
49   void* operator new(size_t,void* anAddress)
50   {
51     return anAddress;
52   }
53   void* operator new(size_t size)
54   {
55     return Standard::Allocate(size);
56   }
57   void  operator delete(void *anAddress)
58   {
59     if (anAddress) Standard::Free((Standard_Address&)anAddress);
60   }
61
62 #if OCC_VERSION_LARGE > 0x06050200
63   //! Sets cashed geometrical tools <br>
64   Standard_EXPORT     void SetContext(const Handle(IntTools_Context)& theContext) ;
65   //! Returns cashed geometrical tools <br>
66   Standard_EXPORT    const Handle_IntTools_Context& Context() const;
67
68   Standard_EXPORT   virtual  void Perform() ;
69 #endif
70
71   Standard_EXPORT   void SetShape(const TopoDS_Shape& aS) ;
72
73   Standard_EXPORT   void SetTolerance(const Standard_Real aT) ;
74
75   Standard_EXPORT  const TopoDS_Shape& Shape() const;
76
77   Standard_EXPORT   Standard_Real Tolerance() const;
78
79   Standard_EXPORT  const TopoDS_Shape& Result() const;
80
81 protected:
82
83
84   Standard_EXPORT GEOMAlgo_ShapeAlgo();
85   Standard_EXPORT virtual ~GEOMAlgo_ShapeAlgo();
86
87
88   TopoDS_Shape myShape;
89   Standard_Real myTolerance;
90   TopoDS_Shape myResult;
91 #if OCC_VERSION_LARGE > 0x06050200
92   Handle_IntTools_Context myContext;
93 #else
94   IntTools_Context myContext;
95 #endif
96
97 private:
98
99 };
100
101 // other Inline functions and methods (like "C++: function call" methods)
102
103 #endif