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:
@@ -24,21 +24,21 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable FileDescription;
|
||||
Create returns FileDescription;
|
||||
---Purpose: Returns a FileDescription
|
||||
|
||||
Init (me : mutable;
|
||||
aDescription : mutable HArray1OfHAsciiString from Interface;
|
||||
aImplementationLevel : mutable HAsciiString from TCollection);
|
||||
aDescription : HArray1OfHAsciiString from Interface;
|
||||
aImplementationLevel : HAsciiString from TCollection);
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetDescription(me : mutable; aDescription : mutable HArray1OfHAsciiString);
|
||||
Description (me) returns mutable HArray1OfHAsciiString;
|
||||
DescriptionValue (me; num : Integer) returns mutable HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : HArray1OfHAsciiString);
|
||||
Description (me) returns HArray1OfHAsciiString;
|
||||
DescriptionValue (me; num : Integer) returns HAsciiString;
|
||||
NbDescription (me) returns Integer;
|
||||
SetImplementationLevel(me : mutable; aImplementationLevel : mutable HAsciiString);
|
||||
ImplementationLevel (me) returns mutable HAsciiString;
|
||||
SetImplementationLevel(me : mutable; aImplementationLevel : HAsciiString);
|
||||
ImplementationLevel (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,38 +24,38 @@ uses
|
||||
HArray1OfHAsciiString from Interface
|
||||
is
|
||||
|
||||
Create returns mutable FileName;
|
||||
Create returns FileName;
|
||||
---Purpose: Returns a FileName
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aTimeStamp : mutable HAsciiString from TCollection;
|
||||
aAuthor : mutable HArray1OfHAsciiString from Interface;
|
||||
aOrganization : mutable HArray1OfHAsciiString from Interface;
|
||||
aPreprocessorVersion : mutable HAsciiString from TCollection;
|
||||
aOriginatingSystem : mutable HAsciiString from TCollection;
|
||||
aAuthorisation : mutable HAsciiString from TCollection);
|
||||
aName : HAsciiString from TCollection;
|
||||
aTimeStamp : HAsciiString from TCollection;
|
||||
aAuthor : HArray1OfHAsciiString from Interface;
|
||||
aOrganization : HArray1OfHAsciiString from Interface;
|
||||
aPreprocessorVersion : HAsciiString from TCollection;
|
||||
aOriginatingSystem : HAsciiString from TCollection;
|
||||
aAuthorisation : HAsciiString from TCollection);
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetTimeStamp(me : mutable; aTimeStamp : mutable HAsciiString);
|
||||
TimeStamp (me) returns mutable HAsciiString;
|
||||
SetAuthor(me : mutable; aAuthor : mutable HArray1OfHAsciiString);
|
||||
Author (me) returns mutable HArray1OfHAsciiString;
|
||||
AuthorValue (me; num : Integer) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetTimeStamp(me : mutable; aTimeStamp : HAsciiString);
|
||||
TimeStamp (me) returns HAsciiString;
|
||||
SetAuthor(me : mutable; aAuthor : HArray1OfHAsciiString);
|
||||
Author (me) returns HArray1OfHAsciiString;
|
||||
AuthorValue (me; num : Integer) returns HAsciiString;
|
||||
NbAuthor (me) returns Integer;
|
||||
SetOrganization(me : mutable; aOrganization : mutable HArray1OfHAsciiString);
|
||||
Organization (me) returns mutable HArray1OfHAsciiString;
|
||||
OrganizationValue (me; num : Integer) returns mutable HAsciiString;
|
||||
SetOrganization(me : mutable; aOrganization : HArray1OfHAsciiString);
|
||||
Organization (me) returns HArray1OfHAsciiString;
|
||||
OrganizationValue (me; num : Integer) returns HAsciiString;
|
||||
NbOrganization (me) returns Integer;
|
||||
SetPreprocessorVersion(me : mutable; aPreprocessorVersion : mutable HAsciiString);
|
||||
PreprocessorVersion (me) returns mutable HAsciiString;
|
||||
SetOriginatingSystem(me : mutable; aOriginatingSystem : mutable HAsciiString);
|
||||
OriginatingSystem (me) returns mutable HAsciiString;
|
||||
SetAuthorisation(me : mutable; aAuthorisation : mutable HAsciiString);
|
||||
Authorisation (me) returns mutable HAsciiString;
|
||||
SetPreprocessorVersion(me : mutable; aPreprocessorVersion : HAsciiString);
|
||||
PreprocessorVersion (me) returns HAsciiString;
|
||||
SetOriginatingSystem(me : mutable; aOriginatingSystem : HAsciiString);
|
||||
OriginatingSystem (me) returns HAsciiString;
|
||||
SetAuthorisation(me : mutable; aAuthorisation : HAsciiString);
|
||||
Authorisation (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,17 +24,17 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable FileSchema;
|
||||
Create returns FileSchema;
|
||||
---Purpose: Returns a FileSchema
|
||||
|
||||
Init (me : mutable;
|
||||
aSchemaIdentifiers : mutable HArray1OfHAsciiString from Interface);
|
||||
aSchemaIdentifiers : HArray1OfHAsciiString from Interface);
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetSchemaIdentifiers(me : mutable; aSchemaIdentifiers : mutable HArray1OfHAsciiString);
|
||||
SchemaIdentifiers (me) returns mutable HArray1OfHAsciiString;
|
||||
SchemaIdentifiersValue (me; num : Integer) returns mutable HAsciiString;
|
||||
SetSchemaIdentifiers(me : mutable; aSchemaIdentifiers : HArray1OfHAsciiString);
|
||||
SchemaIdentifiers (me) returns HArray1OfHAsciiString;
|
||||
SchemaIdentifiersValue (me; num : Integer) returns HAsciiString;
|
||||
NbSchemaIdentifiers (me) returns Integer;
|
||||
|
||||
fields
|
||||
|
@@ -24,7 +24,7 @@ uses AsciiString from TCollection
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable HeaderRecognizer ;
|
||||
Create returns HeaderRecognizer ;
|
||||
|
||||
Eval (me : mutable ; key : AsciiString from TCollection) is protected;
|
||||
---Purpose: Recognizes data types of Header STEP Standard
|
||||
|
@@ -22,7 +22,7 @@ uses Protocol from Interface,
|
||||
CString from Standard
|
||||
|
||||
is
|
||||
Create returns mutable Protocol from HeaderSection;
|
||||
Create returns Protocol from HeaderSection;
|
||||
TypeNumber (me; atype : any Type) returns Integer is redefined;
|
||||
---Purpose :Returns a Case Number for each of the HeaderSection Entities
|
||||
SchemaName(me) returns CString from Standard is redefined;
|
||||
|
Reference in New Issue
Block a user