1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-24 13:50:49 +03:00

Coding - Deprecate Handle_* type usage #240

Handle_* require special processing in Windows
  and it is already not needed for VS15+
In 7.9 dev will be reorginized to use typedef even for MSVC.
In  8.0 will be fully removed.
This commit is contained in:
dpasukhi
2025-01-05 12:41:34 +00:00
parent 9687f7369c
commit 3d6c21124a
11 changed files with 19 additions and 10 deletions

View File

@@ -137,7 +137,7 @@ This class is used to interpolate a BSplineCurve passing through an array of po
This class may be instantiated as follows:
~~~~{.cpp}
Geom2dAPI_Interpolate
(const Handle_TColgp_HArray1OfPnt2d& Points,
(const Handle(TColgp_HArray1OfPnt2d)& Points,
const Standard_Boolean PeriodicFlag,
const Standard_Real Tolerance);
@@ -165,7 +165,7 @@ Geom2dAPI_Interpolate(Points,
This class may be instantiated as follows:
~~~~{.cpp}
GeomAPI_Interpolate
(const Handle_TColgp_HArray1OfPnt& Points,
(const Handle(TColgp_HArray1OfPnt)& Points,
const Standard_Boolean PeriodicFlag,
const Standard_Real Tolerance);