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:
@@ -31,7 +31,7 @@ uses
|
||||
is
|
||||
|
||||
Create (NS : NamedShape from TNaming)
|
||||
returns mutable DeltaOnModification from TNaming;
|
||||
returns DeltaOnModification from TNaming;
|
||||
---Purpose: Initializes a TDF_DeltaOnModification.
|
||||
|
||||
Apply (me : mutable)
|
||||
|
@@ -24,7 +24,7 @@ uses
|
||||
is
|
||||
|
||||
Create (NS : NamedShape from TNaming)
|
||||
returns mutable DeltaOnRemoval from TNaming;
|
||||
returns DeltaOnRemoval from TNaming;
|
||||
---Purpose: Initializes a TDF_DeltaOnModification.
|
||||
|
||||
Apply (me : mutable)
|
||||
|
@@ -90,7 +90,7 @@ is
|
||||
|
||||
Paste (me;
|
||||
into : in out Name from TNaming;
|
||||
RT : mutable RelocationTable from TDF);
|
||||
RT : RelocationTable from TDF);
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -49,7 +49,7 @@ is
|
||||
---Purpose: Returns the GUID for named shapes.
|
||||
---C++: return const &
|
||||
|
||||
Create returns mutable NamedShape from TNaming;
|
||||
Create returns NamedShape from TNaming;
|
||||
|
||||
|
||||
IsEmpty (me)
|
||||
@@ -82,7 +82,7 @@ is
|
||||
---C++: inline
|
||||
---C++: return const &
|
||||
|
||||
BackupCopy(me) returns mutable Attribute from TDF
|
||||
BackupCopy(me) returns Attribute from TDF
|
||||
is redefined;
|
||||
---Purpose: Copies the attribute contents into a new other
|
||||
-- attribute. It is used by Backup().
|
||||
@@ -117,14 +117,14 @@ is
|
||||
-- ----------------
|
||||
|
||||
NewEmpty(me)
|
||||
returns mutable Attribute from TDF
|
||||
returns Attribute from TDF
|
||||
is redefined;
|
||||
---Purpose: Returns an new empty attribute from the good end
|
||||
-- type. It is used by the copy algorithm.
|
||||
|
||||
Paste(me;
|
||||
intoAttribute : mutable Attribute from TDF;
|
||||
aRelocTationable : mutable RelocationTable from TDF)
|
||||
intoAttribute : Attribute from TDF;
|
||||
aRelocTationable : RelocationTable from TDF)
|
||||
is redefined;
|
||||
---Purpose: This method is different from the "Copy" one,
|
||||
-- because it is used when copying an attribute from
|
||||
|
@@ -78,7 +78,7 @@ is
|
||||
|
||||
|
||||
Create
|
||||
returns mutable Naming from TNaming;
|
||||
returns Naming from TNaming;
|
||||
|
||||
IsDefined (me) returns Boolean from Standard;
|
||||
|
||||
@@ -109,12 +109,12 @@ is
|
||||
-- ===================================
|
||||
|
||||
NewEmpty (me)
|
||||
returns mutable Attribute from TDF;
|
||||
returns Attribute from TDF;
|
||||
|
||||
Restore (me: mutable; With : Attribute from TDF);
|
||||
|
||||
Paste (me; Into : mutable Attribute from TDF;
|
||||
RT : mutable RelocationTable from TDF);
|
||||
Paste (me; Into : Attribute from TDF;
|
||||
RT : RelocationTable from TDF);
|
||||
|
||||
References (me; aDataSet : DataSet from TDF)
|
||||
is redefined virtual;
|
||||
|
@@ -34,7 +34,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable UsedShapes from TNaming
|
||||
Create returns UsedShapes from TNaming
|
||||
is private;
|
||||
|
||||
Destroy(me : mutable);
|
||||
@@ -54,7 +54,7 @@ is
|
||||
---Purpose: Returns the ID: 2a96b614-ec8b-11d0-bee7-080009dc3333.
|
||||
---C++: return const &
|
||||
|
||||
BackupCopy(me) returns mutable Attribute from TDF
|
||||
BackupCopy(me) returns Attribute from TDF
|
||||
is redefined;
|
||||
---Purpose: Copies the attribute contents into a new other
|
||||
-- attribute. It is used by Backup().
|
||||
@@ -95,14 +95,14 @@ is
|
||||
-- ----------------
|
||||
|
||||
NewEmpty(me)
|
||||
returns mutable Attribute from TDF
|
||||
returns Attribute from TDF
|
||||
is redefined;
|
||||
---Purpose: Returns an new empty attribute from the good end
|
||||
-- type. It is used by the copy algorithm.
|
||||
|
||||
Paste(me;
|
||||
intoAttribute : mutable Attribute from TDF;
|
||||
aRelocTationable : mutable RelocationTable from TDF)
|
||||
intoAttribute : Attribute from TDF;
|
||||
aRelocTationable : RelocationTable from TDF)
|
||||
is redefined;
|
||||
---Purpose: This method is different from the "Copy" one,
|
||||
-- because it is used when copying an attribute from
|
||||
|
Reference in New Issue
Block a user