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

0024023: Revamp the OCCT Handle -- GC

Implementation of operator of type casting to resulting object simplified in classes of GC and GCE2d packages
This commit is contained in:
abv
2015-06-25 00:39:28 +03:00
parent c04c30b3ee
commit 83eaf3e892
64 changed files with 33 additions and 533 deletions

View File

@@ -161,20 +161,3 @@ const Handle(Geom_TrimmedCurve)& GC_MakeArcOfCircle::Value() const
StdFail_NotDone_Raise_if(TheError != gce_Done,"");
return TheArc;
}
//=======================================================================
//function : Operator
//purpose :
//=======================================================================
const Handle(Geom_TrimmedCurve)& GC_MakeArcOfCircle::Operator() const
{
return Value();
}
//=======================================================================
//function : operator
//purpose :
//=======================================================================
GC_MakeArcOfCircle::operator Handle(Geom_TrimmedCurve) () const
{
return Value();
}