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

@@ -33,7 +33,7 @@ uses
is
Create returns mutable BasicMsgRegistrator from ShapeExtend;
Create returns BasicMsgRegistrator from ShapeExtend;
---Purpose: Empty constructor.
Send (me: mutable; object : Transient;

View File

@@ -29,7 +29,7 @@ uses
is
Initialize returns mutable ComplexCurve from ShapeExtend;
Initialize returns ComplexCurve from ShapeExtend;
---Purpose:
NbCurves (me) returns Integer is deferred;

View File

@@ -64,17 +64,17 @@ uses
is
Create returns mutable CompositeSurface from ShapeExtend;
Create returns CompositeSurface from ShapeExtend;
---Purpose: Empty constructor.
Create (GridSurf: HArray2OfSurface from TColGeom;
param : Parametrisation from ShapeExtend = ShapeExtend_Natural)
returns mutable CompositeSurface from ShapeExtend;
returns CompositeSurface from ShapeExtend;
---Purpose: Initializes by a grid of surfaces (calls Init()).
Create (GridSurf: HArray2OfSurface from TColGeom;
UJoints, VJoints : Array1OfReal from TColStd)
returns mutable CompositeSurface from ShapeExtend;
returns CompositeSurface from ShapeExtend;
---Purpose: Initializes by a grid of surfaces (calls Init()).
Init (me: mutable; GridSurf: HArray2OfSurface from TColGeom;
@@ -222,7 +222,7 @@ is
Transform (me : mutable; T : Trsf) is redefined;
---Purpose: Applies transformation to all the patches
Copy (me) returns mutable like me is redefined;
Copy (me) returns like me is redefined;
---Purpose: Returns a copy of the surface
UReverse (me : mutable) is redefined;
@@ -254,10 +254,10 @@ is
IsVPeriodic (me) returns Boolean is redefined;
---Purpose: Returns False
UIso (me; U : Real) returns mutable Curve is redefined;
UIso (me; U : Real) returns Curve is redefined;
---Purpose: NOT IMPLEMENTED (returns Null curve)
VIso (me; V : Real) returns mutable Curve is redefined;
VIso (me; V : Real) returns Curve is redefined;
---Purpose: NOT IMPLEMENTED (returns Null curve)

View File

@@ -35,7 +35,7 @@ uses
is
Create returns mutable MsgRegistrator from ShapeExtend;
Create returns MsgRegistrator from ShapeExtend;
---Purpose: Creates an object.

View File

@@ -51,12 +51,12 @@ uses
is
Create returns mutable WireData from ShapeExtend;
Create returns WireData from ShapeExtend;
---Purpose: Empty constructor, creates empty wire with no edges
Create (wire: Wire from TopoDS; chained: Boolean = Standard_True ;
theManifoldMode :Boolean = Standard_True)
returns mutable WireData from ShapeExtend;
returns WireData from ShapeExtend;
---Purpose: Constructor initializing the data from TopoDS_Wire. Calls Init(wire,chained).
Init (me: mutable; other: WireData from ShapeExtend);