Salome HOME
Copyright update 2022
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_ShapeAlgo.hxx
index 98a8c0b3fd1f441d0587dd3cc19aab1d3fe31258..9df8819220a74790ef97d015a1d444c6f1602b0d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -6,7 +6,7 @@
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
-// File:        GEOMAlgo_ShapeAlgo.hxx
-// Created:     Tue Dec  7 12:06:54 2004
-// Author:      Peter KURNEV
-//              <pkv@irinox>
-//
 #ifndef _GEOMAlgo_ShapeAlgo_HeaderFile
 #define _GEOMAlgo_ShapeAlgo_HeaderFile
 
@@ -32,7 +27,7 @@
 #include <Standard_Macro.hxx>
 #include <TopoDS_Shape.hxx>
 #include <Standard_Real.hxx>
-#include <Handle_IntTools_Context.hxx>
+#include <IntTools_Context.hxx>
 #include <GEOMAlgo_Algo.hxx>
 
 //=======================================================================
@@ -41,7 +36,7 @@
 //=======================================================================
 class GEOMAlgo_ShapeAlgo  : public GEOMAlgo_Algo
 {
- public:
+public:
 
   //! Sets cashed geometrical tools <br>
   Standard_EXPORT
@@ -49,7 +44,7 @@ class GEOMAlgo_ShapeAlgo  : public GEOMAlgo_Algo
 
   //! Returns cashed geometrical tools <br>
   Standard_EXPORT
-    const Handle_IntTools_Context& Context() const;
+    const Handle(IntTools_Context)& Context() const;
 
   Standard_EXPORT
     void SetShape(const TopoDS_Shape& aS) ;
@@ -76,10 +71,10 @@ protected:
   Standard_EXPORT
     virtual ~GEOMAlgo_ShapeAlgo();
 
-
   TopoDS_Shape myShape;
   Standard_Real myTolerance;
   TopoDS_Shape myResult;
-  Handle_IntTools_Context myContext;
+  Handle(IntTools_Context) myContext;
 };
+
 #endif