1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-13 14:27:08 +03:00

0024023: Revamp the OCCT Handle -- automatic

Automatic upgrade by command "occt_upgrade . -handle"
This commit is contained in:
abv
2015-07-02 16:30:15 +03:00
parent e7195ab476
commit 35c0599a42
139 changed files with 58 additions and 284 deletions

View File

@@ -49,7 +49,7 @@ class BndLib_Box2dCurve {
void SetCurve(const Handle(Geom2d_Curve)& aC);
const Handle_Geom2d_Curve& Curve() const;
const Handle(Geom2d_Curve)& Curve() const;
void SetRange(const Standard_Real aT1,
const Standard_Real aT2);
@@ -95,10 +95,10 @@ class BndLib_Box2dCurve {
void PerformOnePoint();
//-----------------------------
protected:
Handle_Geom2d_Curve myCurve;
Handle(Geom2d_Curve) myCurve;
Bnd_Box2d myBox;
Standard_Integer myErrorStatus;
Handle_Geom2d_Curve myCurveBase;
Handle(Geom2d_Curve) myCurveBase;
Standard_Real myOffsetBase;
Standard_Boolean myOffsetFlag;
Standard_Real myT1;