Salome HOME
Copyrights update 2015.
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ShapeAlgo.hxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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 // File:        GEOMAlgo_ShapeAlgo.hxx
24 // Created:     Tue Dec  7 12:06:54 2004
25 // Author:      Peter KURNEV
26 //              <pkv@irinox>
27 //
28 #ifndef _GEOMAlgo_ShapeAlgo_HeaderFile
29 #define _GEOMAlgo_ShapeAlgo_HeaderFile
30
31 #include <Basics_OCCTVersion.hxx>
32
33 #include <Standard.hxx>
34 #include <Standard_Macro.hxx>
35 #include <TopoDS_Shape.hxx>
36 #include <Standard_Real.hxx>
37 #if OCC_VERSION_LARGE > 0x06070100
38 #include <Handle_IntTools_Context.hxx>
39 #else
40 #include <Handle_BOPInt_Context.hxx>
41 #endif
42 #include <GEOMAlgo_Algo.hxx>
43
44 //=======================================================================
45 //class    : GEOMAlgo_ShapeAlgo
46 //purpose  :
47 //=======================================================================
48 class GEOMAlgo_ShapeAlgo  : public GEOMAlgo_Algo
49 {
50  public:
51
52   //! Sets cashed geometrical tools <br>
53   Standard_EXPORT
54 #if OCC_VERSION_LARGE > 0x06070100
55     void SetContext(const Handle(IntTools_Context)& theContext) ;
56 #else
57     void SetContext(const Handle(BOPInt_Context)& theContext) ;
58 #endif
59
60   //! Returns cashed geometrical tools <br>
61   Standard_EXPORT
62 #if OCC_VERSION_LARGE > 0x06070100
63     const Handle_IntTools_Context& Context() const;
64 #else
65     const Handle_BOPInt_Context& Context() const;
66 #endif
67
68   Standard_EXPORT
69     void SetShape(const TopoDS_Shape& aS) ;
70
71   Standard_EXPORT
72     void SetTolerance(const Standard_Real aT) ;
73
74   Standard_EXPORT
75     const TopoDS_Shape& Shape() const;
76
77   Standard_EXPORT
78     Standard_Real Tolerance() const;
79
80   Standard_EXPORT
81     const TopoDS_Shape& Result() const;
82
83   Standard_EXPORT
84     virtual  void Perform() ;
85
86 protected:
87   Standard_EXPORT
88     GEOMAlgo_ShapeAlgo();
89
90   Standard_EXPORT
91     virtual ~GEOMAlgo_ShapeAlgo();
92
93
94   TopoDS_Shape myShape;
95   Standard_Real myTolerance;
96   TopoDS_Shape myResult;
97 #if OCC_VERSION_LARGE > 0x06070100
98   Handle_IntTools_Context myContext;
99 #else
100   Handle_BOPInt_Context myContext;
101 #endif
102 };
103 #endif