1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-04 13:13:25 +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

@@ -22,7 +22,7 @@ uses
is
Create returns mutable AssemblyComponentUsageSubstitute;
Create returns AssemblyComponentUsageSubstitute;
Init (me : mutable;
aName : HAsciiString;

View File

@@ -22,6 +22,6 @@ uses
is
Create returns mutable CompositeShapeAspect;
Create returns CompositeShapeAspect;
end CompositeShapeAspect;

View File

@@ -27,7 +27,7 @@ is
Create returns CompoundRepresentationItem;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
item_element : HArray1OfRepresentationItem from StepRepr);
ItemElement (me) returns HArray1OfRepresentationItem from StepRepr;

View File

@@ -25,7 +25,7 @@ uses
RepresentationContext from StepRepr
is
Create returns mutable DefinitionalRepresentation;
Create returns DefinitionalRepresentation;
---Purpose: Returns a DefinitionalRepresentation

View File

@@ -22,6 +22,6 @@ uses
is
Create returns mutable DerivedShapeAspect;
Create returns DerivedShapeAspect;
end DerivedShapeAspect;

View File

@@ -23,21 +23,21 @@ uses
HAsciiString from TCollection
is
Create returns mutable DescriptiveRepresentationItem;
Create returns DescriptiveRepresentationItem;
---Purpose: Returns a DescriptiveRepresentationItem
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aDescription : mutable HAsciiString from TCollection) is virtual;
aName : HAsciiString from TCollection;
aDescription : HAsciiString from TCollection) is virtual;
-- Specific Methods for Field Data Access --
SetDescription(me : mutable; aDescription : mutable HAsciiString);
Description (me) returns mutable HAsciiString;
SetDescription(me : mutable; aDescription : HAsciiString);
Description (me) returns HAsciiString;
fields

View File

@@ -22,6 +22,6 @@ uses
is
Create returns mutable Extension;
Create returns Extension;
end Extension;

View File

@@ -21,6 +21,6 @@ uses
is
Create returns mutable ExternallyDefinedRepresentation;
Create returns ExternallyDefinedRepresentation;
end ExternallyDefinedRepresentation;

View File

@@ -23,19 +23,19 @@ uses
HAsciiString from TCollection
is
Create returns mutable FunctionallyDefinedTransformation;
Create returns FunctionallyDefinedTransformation;
---Purpose: Returns a FunctionallyDefinedTransformation
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aDescription : mutable HAsciiString from TCollection) is virtual;
aName : HAsciiString from TCollection;
aDescription : HAsciiString from TCollection) is virtual;
-- Specific Methods for Field Data Access --
SetName(me : mutable; aName : mutable HAsciiString);
Name (me) returns mutable HAsciiString;
SetDescription(me : mutable; aDescription : mutable HAsciiString);
Description (me) returns mutable HAsciiString;
SetName(me : mutable; aName : HAsciiString);
Name (me) returns HAsciiString;
SetDescription(me : mutable; aDescription : HAsciiString);
Description (me) returns HAsciiString;
fields

View File

@@ -25,24 +25,24 @@ uses
HAsciiString from TCollection
is
Create returns mutable GlobalUncertaintyAssignedContext;
Create returns GlobalUncertaintyAssignedContext;
---Purpose: Returns a GlobalUncertaintyAssignedContext
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection) is redefined;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection;
aUncertainty : mutable HArray1OfUncertaintyMeasureWithUnit from StepBasic) is virtual;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection;
aUncertainty : HArray1OfUncertaintyMeasureWithUnit from StepBasic) is virtual;
-- Specific Methods for Field Data Access --
SetUncertainty(me : mutable; aUncertainty : mutable HArray1OfUncertaintyMeasureWithUnit);
Uncertainty (me) returns mutable HArray1OfUncertaintyMeasureWithUnit;
UncertaintyValue (me; num : Integer) returns mutable UncertaintyMeasureWithUnit;
SetUncertainty(me : mutable; aUncertainty : HArray1OfUncertaintyMeasureWithUnit);
Uncertainty (me) returns HArray1OfUncertaintyMeasureWithUnit;
UncertaintyValue (me; num : Integer) returns UncertaintyMeasureWithUnit;
NbUncertainty (me) returns Integer;
fields

View File

@@ -25,24 +25,24 @@ uses
HAsciiString from TCollection
is
Create returns mutable GlobalUnitAssignedContext;
Create returns GlobalUnitAssignedContext;
---Purpose: Returns a GlobalUnitAssignedContext
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection) is redefined;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection;
aUnits : mutable HArray1OfNamedUnit from StepBasic) is virtual;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection;
aUnits : HArray1OfNamedUnit from StepBasic) is virtual;
-- Specific Methods for Field Data Access --
SetUnits(me : mutable; aUnits : mutable HArray1OfNamedUnit);
Units (me) returns mutable HArray1OfNamedUnit;
UnitsValue (me; num : Integer) returns mutable NamedUnit;
SetUnits(me : mutable; aUnits : HArray1OfNamedUnit);
Units (me) returns HArray1OfNamedUnit;
UnitsValue (me; num : Integer) returns NamedUnit;
NbUnits (me) returns Integer;
fields

View File

@@ -24,7 +24,7 @@ uses
is
Create returns mutable ItemDefinedTransformation;
Create returns ItemDefinedTransformation;
Init (me : mutable;
aName : HAsciiString from TCollection;

View File

@@ -24,24 +24,24 @@ uses
HAsciiString from TCollection
is
Create returns mutable MappedItem;
Create returns MappedItem;
---Purpose: Returns a MappedItem
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is redefined;
aName : HAsciiString from TCollection) is redefined;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aMappingSource : mutable RepresentationMap from StepRepr;
aMappingTarget : mutable RepresentationItem from StepRepr) is virtual;
aName : HAsciiString from TCollection;
aMappingSource : RepresentationMap from StepRepr;
aMappingTarget : RepresentationItem from StepRepr) is virtual;
-- Specific Methods for Field Data Access --
SetMappingSource(me : mutable; aMappingSource : mutable RepresentationMap);
MappingSource (me) returns mutable RepresentationMap;
SetMappingTarget(me : mutable; aMappingTarget : mutable RepresentationItem);
MappingTarget (me) returns mutable RepresentationItem;
SetMappingSource(me : mutable; aMappingSource : RepresentationMap);
MappingSource (me) returns RepresentationMap;
SetMappingTarget(me : mutable; aMappingTarget : RepresentationItem);
MappingTarget (me) returns RepresentationItem;
fields

View File

@@ -25,17 +25,17 @@ uses
is
Create returns mutable MaterialDesignation;
Create returns MaterialDesignation;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aOfDefinition : CharacterizedDefinition);
-- Specific Methods for Field Data Access --
SetName(me : mutable; aName : mutable HAsciiString);
Name (me) returns mutable HAsciiString;
SetName(me : mutable; aName : HAsciiString);
Name (me) returns HAsciiString;
SetOfDefinition (me : mutable; aOfDefinition : CharacterizedDefinition);
OfDefinition (me) returns CharacterizedDefinition;

View File

@@ -28,11 +28,11 @@ uses
MeasureValueMember from StepBasic
is
Create returns mutable MeasureRepresentationItem;
Create returns MeasureRepresentationItem;
---Purpose: Creates empty object
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aName : HAsciiString from TCollection;
aValueComponent : MeasureValueMember from StepBasic;
aUnitComponent : Unit from StepBasic);
---Purpose: Init all fields

View File

@@ -23,7 +23,7 @@ uses
HAsciiString from TCollection
is
Create returns mutable ParametricRepresentationContext;
Create returns ParametricRepresentationContext;
---Purpose: Returns a ParametricRepresentationContext

View File

@@ -21,6 +21,6 @@ uses
is
Create returns mutable PromissoryUsageOccurrence;
Create returns PromissoryUsageOccurrence;
end PromissoryUsageOccurrence;

View File

@@ -22,21 +22,21 @@ uses
is
Create returns mutable ReprItemAndLengthMeasureWithUnit;
Create returns ReprItemAndLengthMeasureWithUnit;
Init(me: mutable; aMWU: mutable MeasureWithUnit; aRI : RepresentationItem);
Init(me: mutable; aMWU: MeasureWithUnit; aRI : RepresentationItem);
SetLengthMeasureWithUnit(me: mutable; aLMWU: mutable LengthMeasureWithUnit);
SetLengthMeasureWithUnit(me: mutable; aLMWU: LengthMeasureWithUnit);
GetLengthMeasureWithUnit(me) returns mutable LengthMeasureWithUnit;
GetLengthMeasureWithUnit(me) returns LengthMeasureWithUnit;
GetMeasureRepresentationItem(me) returns mutable MeasureRepresentationItem;
GetMeasureRepresentationItem(me) returns MeasureRepresentationItem;
SetMeasureWithUnit(me: mutable; aMWU: mutable MeasureWithUnit);
SetMeasureWithUnit(me: mutable; aMWU: MeasureWithUnit);
GetMeasureWithUnit(me) returns mutable MeasureWithUnit;
GetMeasureWithUnit(me) returns MeasureWithUnit;
GetRepresentationItem(me) returns mutable RepresentationItem;
GetRepresentationItem(me) returns RepresentationItem;
fields

View File

@@ -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

View File

@@ -23,19 +23,19 @@ uses
HAsciiString from TCollection
is
Create returns mutable RepresentationContext;
Create returns RepresentationContext;
---Purpose: Returns a RepresentationContext
Init (me : mutable;
aContextIdentifier : mutable HAsciiString from TCollection;
aContextType : mutable HAsciiString from TCollection) is virtual;
aContextIdentifier : HAsciiString from TCollection;
aContextType : HAsciiString from TCollection) is virtual;
-- Specific Methods for Field Data Access --
SetContextIdentifier(me : mutable; aContextIdentifier : mutable HAsciiString);
ContextIdentifier (me) returns mutable HAsciiString;
SetContextType(me : mutable; aContextType : mutable HAsciiString);
ContextType (me) returns mutable HAsciiString;
SetContextIdentifier(me : mutable; aContextIdentifier : HAsciiString);
ContextIdentifier (me) returns HAsciiString;
SetContextType(me : mutable; aContextType : HAsciiString);
ContextType (me) returns HAsciiString;
fields

View File

@@ -23,16 +23,16 @@ uses
HAsciiString from TCollection
is
Create returns mutable RepresentationItem;
Create returns RepresentationItem;
---Purpose: Returns a RepresentationItem
Init (me : mutable;
aName : mutable HAsciiString from TCollection) is virtual;
aName : HAsciiString from TCollection) is virtual;
-- Specific Methods for Field Data Access --
SetName(me : mutable; aName : mutable HAsciiString);
Name (me) returns mutable HAsciiString;
SetName(me : mutable; aName : HAsciiString);
Name (me) returns HAsciiString;
fields

View File

@@ -24,19 +24,19 @@ uses
Representation from StepRepr
is
Create returns mutable RepresentationMap;
Create returns RepresentationMap;
---Purpose: Returns a RepresentationMap
Init (me : mutable;
aMappingOrigin : mutable RepresentationItem from StepRepr;
aMappedRepresentation : mutable Representation from StepRepr) is virtual;
aMappingOrigin : RepresentationItem from StepRepr;
aMappedRepresentation : Representation from StepRepr) is virtual;
-- Specific Methods for Field Data Access --
SetMappingOrigin(me : mutable; aMappingOrigin : mutable RepresentationItem);
MappingOrigin (me) returns mutable RepresentationItem;
SetMappedRepresentation(me : mutable; aMappedRepresentation : mutable Representation);
MappedRepresentation (me) returns mutable Representation;
SetMappingOrigin(me : mutable; aMappingOrigin : RepresentationItem);
MappingOrigin (me) returns RepresentationItem;
SetMappedRepresentation(me : mutable; aMappedRepresentation : Representation);
MappedRepresentation (me) returns Representation;
fields

View File

@@ -24,25 +24,25 @@ uses
Representation from StepRepr
is
Create returns mutable RepresentationRelationship;
Create returns RepresentationRelationship;
---Purpose: Returns a RepresentationRelationship
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aDescription : mutable HAsciiString from TCollection;
aRep1 : mutable Representation from StepRepr;
aRep2 : mutable Representation from StepRepr) is virtual;
aName : HAsciiString from TCollection;
aDescription : HAsciiString from TCollection;
aRep1 : Representation from StepRepr;
aRep2 : Representation from StepRepr) is virtual;
-- Specific Methods for Field Data Access --
SetName(me : mutable; aName : mutable HAsciiString);
Name (me) returns mutable HAsciiString;
SetDescription(me : mutable; aDescription : mutable HAsciiString);
Description (me) returns mutable HAsciiString;
SetRep1(me : mutable; aRep1 : mutable Representation);
Rep1 (me) returns mutable Representation;
SetRep2(me : mutable; aRep2 : mutable Representation);
Rep2 (me) returns mutable Representation;
SetName(me : mutable; aName : HAsciiString);
Name (me) returns HAsciiString;
SetDescription(me : mutable; aDescription : HAsciiString);
Description (me) returns HAsciiString;
SetRep1(me : mutable; aRep1 : Representation);
Rep1 (me) returns Representation;
SetRep2(me : mutable; aRep2 : Representation);
Rep2 (me) returns Representation;
fields

View File

@@ -28,13 +28,13 @@ uses
is
Create returns mutable RepresentationRelationshipWithTransformation;
Create returns RepresentationRelationshipWithTransformation;
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aDescription : mutable HAsciiString from TCollection;
aRep1 : mutable Representation from StepRepr;
aRep2 : mutable Representation from StepRepr;
aName : HAsciiString from TCollection;
aDescription : HAsciiString from TCollection;
aRep1 : Representation from StepRepr;
aRep2 : Representation from StepRepr;
aTransf : Transformation);
TransformationOperator (me) returns Transformation;

View File

@@ -25,23 +25,23 @@ uses
Logical from StepData
is
Create returns mutable ShapeAspect;
Create returns ShapeAspect;
---Purpose: Returns a ShapeAspect
Init (me : mutable;
aName : mutable HAsciiString from TCollection;
aDescription : mutable HAsciiString from TCollection;
aOfShape : mutable ProductDefinitionShape from StepRepr;
aName : HAsciiString from TCollection;
aDescription : HAsciiString from TCollection;
aOfShape : ProductDefinitionShape from StepRepr;
aProductDefinitional : Logical from StepData) is virtual;
-- Specific Methods for Field Data Access --
SetName(me : mutable; aName : mutable HAsciiString);
Name (me) returns mutable HAsciiString;
SetDescription(me : mutable; aDescription : mutable HAsciiString);
Description (me) returns mutable HAsciiString;
SetOfShape(me : mutable; aOfShape : mutable ProductDefinitionShape);
OfShape (me) returns mutable ProductDefinitionShape;
SetName(me : mutable; aName : HAsciiString);
Name (me) returns HAsciiString;
SetDescription(me : mutable; aDescription : HAsciiString);
Description (me) returns HAsciiString;
SetOfShape(me : mutable; aOfShape : ProductDefinitionShape);
OfShape (me) returns ProductDefinitionShape;
SetProductDefinitional(me : mutable; aProductDefinitional : Logical);
ProductDefinitional (me) returns Logical;

View File

@@ -23,6 +23,6 @@ uses
is
Create returns mutable ShapeAspectDerivingRelationship;
Create returns ShapeAspectDerivingRelationship;
end ShapeAspectDerivingRelationship;

View File

@@ -21,6 +21,6 @@ uses
is
Create returns mutable ShapeRepresentationRelationship;
Create returns ShapeRepresentationRelationship;
end ShapeRepresentationRelationship;

View File

@@ -22,6 +22,6 @@ uses
is
Create returns mutable ShapeRepresentationRelationshipWithTransformation;
Create returns ShapeRepresentationRelationshipWithTransformation;
end ShapeRepresentationRelationshipWithTransformation;

View File

@@ -22,6 +22,6 @@ uses
is
Create returns mutable SuppliedPartRelationship;
Create returns SuppliedPartRelationship;
end SuppliedPartRelationship;

View File

@@ -22,6 +22,6 @@ uses
is
Create returns mutable ValueRange;
Create returns ValueRange;
end ValueRange;