mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0024830: Remove redundant keyword 'mutable' in CDL declarations
Redundant keyword 'mutable' removed in CDL files. In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed. Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
This commit is contained in:
@@ -27,7 +27,7 @@ uses TransientProcess, Binder, InterfaceModel from Interface
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable Actor from IGESToBRep;
|
||||
Create returns Actor from IGESToBRep;
|
||||
|
||||
SetModel (me : mutable; model : InterfaceModel from Interface);
|
||||
|
||||
@@ -41,8 +41,8 @@ is
|
||||
|
||||
Recognize (me : mutable; start : Transient) returns Boolean is redefined;
|
||||
|
||||
Transfer (me : mutable; start : Transient; TP : mutable TransientProcess)
|
||||
returns mutable Binder is redefined;
|
||||
Transfer (me : mutable; start : Transient; TP : TransientProcess)
|
||||
returns Binder is redefined;
|
||||
|
||||
UsedTolerance (me) returns Real;
|
||||
---Purpose : Returns the tolerance which was actually used, either from
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable AlgoContainer from IGESToBRep;
|
||||
Create returns AlgoContainer from IGESToBRep;
|
||||
---Purpose: Empty constructor
|
||||
|
||||
SetToolContainer (me: mutable; TC: ToolContainer from IGESToBRep);
|
||||
|
@@ -74,7 +74,7 @@ is
|
||||
|
||||
TransferBasicCurve (me : in out;
|
||||
start : IGESEntity from IGESData)
|
||||
returns mutable Curve from Geom;
|
||||
returns Curve from Geom;
|
||||
---Purpose : Transfert a IGESEntity which answer True to the
|
||||
-- member : IGESToBRep::IsBasicCurve(IGESEntity). If this
|
||||
-- Entity could not be converted, this member returns a NullEntity.
|
||||
@@ -82,7 +82,7 @@ is
|
||||
|
||||
Transfer2dBasicCurve (me : in out;
|
||||
start : IGESEntity from IGESData)
|
||||
returns mutable Curve from Geom2d;
|
||||
returns Curve from Geom2d;
|
||||
---Purpose : Transfert a IGESEntity which answer True to the
|
||||
-- member : IGESToBRep::IsBasicCurve(IGESEntity).
|
||||
-- The IGESEntity must be a curve UV and its associed TRSF must
|
||||
@@ -91,55 +91,55 @@ is
|
||||
|
||||
TransferBSplineCurve (me : in out;
|
||||
start : BSplineCurve from IGESGeom)
|
||||
returns mutable Curve from Geom;
|
||||
returns Curve from Geom;
|
||||
|
||||
Transfer2dBSplineCurve (me : in out;
|
||||
start : BSplineCurve from IGESGeom)
|
||||
returns mutable Curve from Geom2d;
|
||||
returns Curve from Geom2d;
|
||||
|
||||
TransferCircularArc (me : in out;
|
||||
start : CircularArc from IGESGeom)
|
||||
returns mutable Curve from Geom;
|
||||
returns Curve from Geom;
|
||||
|
||||
Transfer2dCircularArc (me : in out;
|
||||
start : CircularArc from IGESGeom)
|
||||
returns mutable Curve from Geom2d;
|
||||
returns Curve from Geom2d;
|
||||
|
||||
TransferConicArc (me : in out;
|
||||
start : ConicArc from IGESGeom)
|
||||
returns mutable Curve from Geom;
|
||||
returns Curve from Geom;
|
||||
|
||||
Transfer2dConicArc (me : in out;
|
||||
start : ConicArc from IGESGeom)
|
||||
returns mutable Curve from Geom2d;
|
||||
returns Curve from Geom2d;
|
||||
|
||||
TransferCopiousData (me : in out;
|
||||
start : CopiousData from IGESGeom)
|
||||
returns mutable BSplineCurve from Geom;
|
||||
returns BSplineCurve from Geom;
|
||||
|
||||
Transfer2dCopiousData (me : in out;
|
||||
start : CopiousData from IGESGeom)
|
||||
returns mutable BSplineCurve from Geom2d;
|
||||
returns BSplineCurve from Geom2d;
|
||||
|
||||
TransferLine (me : in out;
|
||||
start : Line from IGESGeom)
|
||||
returns mutable Curve from Geom;
|
||||
returns Curve from Geom;
|
||||
|
||||
Transfer2dLine (me : in out;
|
||||
start : Line from IGESGeom)
|
||||
returns mutable Curve from Geom2d;
|
||||
returns Curve from Geom2d;
|
||||
|
||||
TransferSplineCurve (me : in out;
|
||||
start : SplineCurve from IGESGeom)
|
||||
returns mutable BSplineCurve from Geom;
|
||||
returns BSplineCurve from Geom;
|
||||
|
||||
Transfer2dSplineCurve (me : in out;
|
||||
start : SplineCurve from IGESGeom)
|
||||
returns mutable BSplineCurve from Geom2d;
|
||||
returns BSplineCurve from Geom2d;
|
||||
|
||||
TransferTransformation (me : in out;
|
||||
start : TransformationMatrix from IGESGeom)
|
||||
returns mutable Transformation from Geom;
|
||||
returns Transformation from Geom;
|
||||
|
||||
|
||||
end BasicCurve;
|
||||
|
@@ -63,49 +63,49 @@ is
|
||||
|
||||
TransferBasicSurface (me : in out;
|
||||
start : IGESEntity from IGESData)
|
||||
returns mutable Surface from Geom;
|
||||
returns Surface from Geom;
|
||||
---Purpose: Returns Surface from Geom if the last transfer has
|
||||
-- succeded.
|
||||
|
||||
TransferPlaneSurface (me : in out;
|
||||
start : PlaneSurface from IGESSolid)
|
||||
returns mutable Plane from Geom;
|
||||
returns Plane from Geom;
|
||||
---Purpose: Returns Plane from Geom if the transfer has
|
||||
-- succeded.
|
||||
|
||||
TransferRigthCylindricalSurface(me : in out;
|
||||
start: CylindricalSurface from IGESSolid)
|
||||
returns mutable CylindricalSurface from Geom;
|
||||
returns CylindricalSurface from Geom;
|
||||
---Purpose: Returns CylindricalSurface from Geom if the transfer has
|
||||
-- succeded.
|
||||
|
||||
TransferRigthConicalSurface (me : in out;
|
||||
start: ConicalSurface from IGESSolid)
|
||||
returns mutable ConicalSurface from Geom;
|
||||
returns ConicalSurface from Geom;
|
||||
---Purpose: Returns ConicalSurface from Geom if the transfer has
|
||||
-- succeded.
|
||||
|
||||
TransferSphericalSurface(me : in out;
|
||||
start: SphericalSurface from IGESSolid)
|
||||
returns mutable SphericalSurface from Geom;
|
||||
returns SphericalSurface from Geom;
|
||||
---Purpose: Returns SphericalSurface from Geom if the transfer has
|
||||
-- succeded.
|
||||
|
||||
TransferToroidalSurface (me : in out;
|
||||
start: ToroidalSurface from IGESSolid)
|
||||
returns mutable ToroidalSurface from Geom;
|
||||
returns ToroidalSurface from Geom;
|
||||
---Purpose: Returns SphericalSurface from Geom if the transfer has
|
||||
-- succeded.
|
||||
|
||||
TransferSplineSurface (me : in out;
|
||||
start: SplineSurface from IGESGeom)
|
||||
returns mutable BSplineSurface from Geom;
|
||||
returns BSplineSurface from Geom;
|
||||
---Purpose: Returns BSplineSurface from Geom if the transfer has
|
||||
-- succeded.
|
||||
|
||||
TransferBSplineSurface (me : in out;
|
||||
start: BSplineSurface from IGESGeom)
|
||||
returns mutable BSplineSurface from Geom;
|
||||
returns BSplineSurface from Geom;
|
||||
---Purpose: Returns BSplineSurface from Geom if the transfer has
|
||||
-- succeded.
|
||||
|
||||
|
@@ -33,10 +33,10 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable IGESBoundary from IGESToBRep;
|
||||
Create returns IGESBoundary from IGESToBRep;
|
||||
---Purpose: Empty constructor
|
||||
|
||||
Create (CS: CurveAndSurface from IGESToBRep) returns mutable IGESBoundary from IGESToBRep;
|
||||
Create (CS: CurveAndSurface from IGESToBRep) returns IGESBoundary from IGESToBRep;
|
||||
---Purpose: Empty constructor
|
||||
|
||||
Init (me: mutable; CS : CurveAndSurface from IGESToBRep;
|
||||
|
@@ -44,7 +44,7 @@ is
|
||||
Model (me) returns IGESModel;
|
||||
---Purpose : Returns the Model to be worked on.
|
||||
|
||||
SetTransientProcess (me : in out; TP : mutable TransientProcess);
|
||||
SetTransientProcess (me : in out; TP : TransientProcess);
|
||||
---Purpose : Allows to set an already defined TransientProcess
|
||||
-- (to be called after LoadFile or SetModel)
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable ToolContainer from IGESToBRep;
|
||||
Create returns ToolContainer from IGESToBRep;
|
||||
---Purpose: Empty constructor
|
||||
|
||||
IGESBoundary (me) returns IGESBoundary from IGESToBRep is virtual;
|
||||
|
Reference in New Issue
Block a user