1
0
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:
abv
2014-04-15 08:50:00 +04:00
committed by apn
parent 99c68ea35f
commit 6e33d3ced2
2421 changed files with 6557 additions and 6604 deletions

View File

@@ -64,7 +64,7 @@ is
start : Curve from Geom2d;
Udeb : Real from Standard;
Ufin : Real from Standard)
returns mutable IGESEntity from IGESData;
returns IGESEntity from IGESData;
---Purpose : Transfert an Entity from Geom2d to IGES. If this
-- Entity could not be converted, this member returns a NullEntity.

View File

@@ -41,13 +41,13 @@ is
Transfer2dPoint (me : in out;
start : Point from Geom2d)
returns mutable Point from IGESGeom;
returns Point from IGESGeom;
---Purpose : Transfert a Point from Geom to IGES. If this
-- Entity could not be converted, this member returns a NullEntity.
Transfer2dPoint (me : in out;
start : CartesianPoint from Geom2d)
returns mutable Point from IGESGeom;
returns Point from IGESGeom;
---Purpose : Transfert a CartesianPoint from Geom to IGES. If this
-- Entity could not be converted, this member returns a NullEntity.

View File

@@ -43,7 +43,7 @@ is
Transfer2dVector (me : in out;
start : Vector from Geom2d)
returns mutable Direction from IGESGeom;
returns Direction from IGESGeom;
---Purpose : Transfert a GeometryEntity which answer True to the
-- member : BRepToIGES::IsGeomVector(Geometry). If this
-- Entity could not be converted, this member returns a NullEntity.
@@ -51,12 +51,12 @@ is
Transfer2dVector (me : in out;
start : VectorWithMagnitude from Geom2d)
returns mutable Direction from IGESGeom;
returns Direction from IGESGeom;
Transfer2dVector (me : in out;
start : Direction from Geom2d)
returns mutable Direction from IGESGeom;
returns Direction from IGESGeom;
end Geom2dVector;