mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-26 01:57:30 +08: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:
@@ -25,72 +25,72 @@ uses
|
||||
Person from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable PersonalAddress;
|
||||
Create returns PersonalAddress;
|
||||
---Purpose: Returns a PersonalAddress
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
hasAinternalLocation : Boolean from Standard;
|
||||
aInternalLocation : mutable HAsciiString from TCollection;
|
||||
aInternalLocation : HAsciiString from TCollection;
|
||||
hasAstreetNumber : Boolean from Standard;
|
||||
aStreetNumber : mutable HAsciiString from TCollection;
|
||||
aStreetNumber : HAsciiString from TCollection;
|
||||
hasAstreet : Boolean from Standard;
|
||||
aStreet : mutable HAsciiString from TCollection;
|
||||
aStreet : HAsciiString from TCollection;
|
||||
hasApostalBox : Boolean from Standard;
|
||||
aPostalBox : mutable HAsciiString from TCollection;
|
||||
aPostalBox : HAsciiString from TCollection;
|
||||
hasAtown : Boolean from Standard;
|
||||
aTown : mutable HAsciiString from TCollection;
|
||||
aTown : HAsciiString from TCollection;
|
||||
hasAregion : Boolean from Standard;
|
||||
aRegion : mutable HAsciiString from TCollection;
|
||||
aRegion : HAsciiString from TCollection;
|
||||
hasApostalCode : Boolean from Standard;
|
||||
aPostalCode : mutable HAsciiString from TCollection;
|
||||
aPostalCode : HAsciiString from TCollection;
|
||||
hasAcountry : Boolean from Standard;
|
||||
aCountry : mutable HAsciiString from TCollection;
|
||||
aCountry : HAsciiString from TCollection;
|
||||
hasAfacsimileNumber : Boolean from Standard;
|
||||
aFacsimileNumber : mutable HAsciiString from TCollection;
|
||||
aFacsimileNumber : HAsciiString from TCollection;
|
||||
hasAtelephoneNumber : Boolean from Standard;
|
||||
aTelephoneNumber : mutable HAsciiString from TCollection;
|
||||
aTelephoneNumber : HAsciiString from TCollection;
|
||||
hasAelectronicMailAddress : Boolean from Standard;
|
||||
aElectronicMailAddress : mutable HAsciiString from TCollection;
|
||||
aElectronicMailAddress : HAsciiString from TCollection;
|
||||
hasAtelexNumber : Boolean from Standard;
|
||||
aTelexNumber : mutable HAsciiString from TCollection) is redefined;
|
||||
aTelexNumber : HAsciiString from TCollection) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
hasAinternalLocation : Boolean from Standard;
|
||||
aInternalLocation : mutable HAsciiString from TCollection;
|
||||
aInternalLocation : HAsciiString from TCollection;
|
||||
hasAstreetNumber : Boolean from Standard;
|
||||
aStreetNumber : mutable HAsciiString from TCollection;
|
||||
aStreetNumber : HAsciiString from TCollection;
|
||||
hasAstreet : Boolean from Standard;
|
||||
aStreet : mutable HAsciiString from TCollection;
|
||||
aStreet : HAsciiString from TCollection;
|
||||
hasApostalBox : Boolean from Standard;
|
||||
aPostalBox : mutable HAsciiString from TCollection;
|
||||
aPostalBox : HAsciiString from TCollection;
|
||||
hasAtown : Boolean from Standard;
|
||||
aTown : mutable HAsciiString from TCollection;
|
||||
aTown : HAsciiString from TCollection;
|
||||
hasAregion : Boolean from Standard;
|
||||
aRegion : mutable HAsciiString from TCollection;
|
||||
aRegion : HAsciiString from TCollection;
|
||||
hasApostalCode : Boolean from Standard;
|
||||
aPostalCode : mutable HAsciiString from TCollection;
|
||||
aPostalCode : HAsciiString from TCollection;
|
||||
hasAcountry : Boolean from Standard;
|
||||
aCountry : mutable HAsciiString from TCollection;
|
||||
aCountry : HAsciiString from TCollection;
|
||||
hasAfacsimileNumber : Boolean from Standard;
|
||||
aFacsimileNumber : mutable HAsciiString from TCollection;
|
||||
aFacsimileNumber : HAsciiString from TCollection;
|
||||
hasAtelephoneNumber : Boolean from Standard;
|
||||
aTelephoneNumber : mutable HAsciiString from TCollection;
|
||||
aTelephoneNumber : HAsciiString from TCollection;
|
||||
hasAelectronicMailAddress : Boolean from Standard;
|
||||
aElectronicMailAddress : mutable HAsciiString from TCollection;
|
||||
aElectronicMailAddress : HAsciiString from TCollection;
|
||||
hasAtelexNumber : Boolean from Standard;
|
||||
aTelexNumber : mutable HAsciiString from TCollection;
|
||||
aPeople : mutable HArray1OfPerson from StepBasic;
|
||||
aDescription : mutable HAsciiString from TCollection) is virtual;
|
||||
aTelexNumber : HAsciiString from TCollection;
|
||||
aPeople : HArray1OfPerson from StepBasic;
|
||||
aDescription : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetPeople(me : mutable; aPeople : mutable HArray1OfPerson);
|
||||
People (me) returns mutable HArray1OfPerson;
|
||||
PeopleValue (me; num : Integer) returns mutable Person;
|
||||
SetPeople(me : mutable; aPeople : HArray1OfPerson);
|
||||
People (me) returns HArray1OfPerson;
|
||||
PeopleValue (me; num : Integer) returns Person;
|
||||
NbPeople (me) returns Integer;
|
||||
SetDescription(me : mutable; aDescription : mutable HAsciiString);
|
||||
Description (me) returns mutable HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : HAsciiString);
|
||||
Description (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
||||
Reference in New Issue
Block a user