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

@@ -44,11 +44,11 @@ uses
is
Create returns mutable FreeBoundData from ShapeAnalysis;
Create returns FreeBoundData from ShapeAnalysis;
---Purpose: Empty constructor
Create (freebound: Wire from TopoDS)
returns mutable FreeBoundData from ShapeAnalysis;
returns FreeBoundData from ShapeAnalysis;
---Purpose: Creates object with contour given in the form of TopoDS_Wire
Clear (me: mutable);

View File

@@ -55,7 +55,7 @@ uses
Array1OfPnt2d from TColgp
is
Create (S : Surface from Geom) returns mutable Surface from ShapeAnalysis;
Create (S : Surface from Geom) returns Surface from ShapeAnalysis;
---Purpose: Creates an analyzer object on the basis of existing surface
Init (me : mutable; S: Surface from Geom);

View File

@@ -39,11 +39,11 @@ uses
HArray1OfReal from TColStd
is
Create returns mutable TransferParameters from ShapeAnalysis;
Create returns TransferParameters from ShapeAnalysis;
---Purpose: Creates empty tool with myShift = 0 and myScale = 1
Create(E : Edge from TopoDS; F : Face from TopoDS)
returns mutable TransferParameters from ShapeAnalysis;
returns TransferParameters from ShapeAnalysis;
---Purpose: Creates a tool and initializes it with edge and face
Init(me : mutable;E : Edge from TopoDS; F : Face from TopoDS ) is virtual;

View File

@@ -33,11 +33,11 @@ uses
Vertex from TopoDS
is
Create returns mutable TransferParametersProj from ShapeAnalysis;
Create returns TransferParametersProj from ShapeAnalysis;
---Purpose: Creats empty constructor.
Create(E: Edge from TopoDS; F: Face from TopoDS)
returns mutable TransferParametersProj from ShapeAnalysis;
returns TransferParametersProj from ShapeAnalysis;
---Purpose:
Init(me: mutable; E: Edge from TopoDS; F: Face from TopoDS ) is redefined;