mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-09-08 14:17:06 +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:
@@ -26,24 +26,24 @@ uses
|
||||
RepresentationItem from StepRepr
|
||||
is
|
||||
|
||||
Create returns mutable Representation;
|
||||
Create returns Representation;
|
||||
---Purpose: Returns a Representation
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aItems : mutable HArray1OfRepresentationItem from StepRepr;
|
||||
aContextOfItems : mutable RepresentationContext from StepRepr) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aItems : HArray1OfRepresentationItem from StepRepr;
|
||||
aContextOfItems : RepresentationContext from StepRepr) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetItems(me : mutable; aItems : mutable HArray1OfRepresentationItem);
|
||||
Items (me) returns mutable HArray1OfRepresentationItem;
|
||||
ItemsValue (me; num : Integer) returns mutable RepresentationItem;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetItems(me : mutable; aItems : HArray1OfRepresentationItem);
|
||||
Items (me) returns HArray1OfRepresentationItem;
|
||||
ItemsValue (me; num : Integer) returns RepresentationItem;
|
||||
NbItems (me) returns Integer;
|
||||
SetContextOfItems(me : mutable; aContextOfItems : mutable RepresentationContext);
|
||||
ContextOfItems (me) returns mutable RepresentationContext;
|
||||
SetContextOfItems(me : mutable; aContextOfItems : RepresentationContext);
|
||||
ContextOfItems (me) returns RepresentationContext;
|
||||
|
||||
fields
|
||||
|
||||
|
Reference in New Issue
Block a user