1
0
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:
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

@@ -28,7 +28,7 @@ uses
is
Create
returns mutable AndFilter from SelectMgr;
returns AndFilter from SelectMgr;
--- Purpose: Constructs an empty selection filter object for two or
-- more types of entity.

View File

@@ -42,11 +42,11 @@ raises
NoSuchObject from Standard
is
Create (aPriority: Integer = 0) returns mutable EntityOwner from SelectMgr;
Create (aPriority: Integer = 0) returns EntityOwner from SelectMgr;
--- Purpose: Initializes the selection priority aPriority.
Create (aSO : SelectableObject;
aPriority : Integer=0)
returns mutable EntityOwner from SelectMgr;
returns EntityOwner from SelectMgr;
---Purpose: Constructs a framework with the selectable object
-- anSO being attributed the selection priority aPriority.

View File

@@ -30,7 +30,7 @@ uses
is
Create
returns mutable OrFilter from SelectMgr;
returns OrFilter from SelectMgr;
---Purpose: Constructs an empty or selection filter.
IsOk(me; anobj : EntityOwner from SelectMgr)
returns Boolean from Standard ;

View File

@@ -52,7 +52,7 @@ is
Initialize(aTypeOfPresentation3d: TypeOfPresentation3d from PrsMgr = PrsMgr_TOP_AllView);
ComputeSelection(me:mutable; aSelection :mutable Selection from SelectMgr;
ComputeSelection(me:mutable; aSelection : Selection from SelectMgr;
aMode : Integer) is deferred private;
---Purpose: Recovers and calculates any sensitive primitive,
-- aSelection, available in Shape mode, specified by
@@ -81,7 +81,7 @@ is
-- the <amode>th selection mode.
AddSelection(me:mutable ;aSelection:mutable Selection from SelectMgr;
AddSelection(me:mutable ;aSelection: Selection from SelectMgr;
aMode : Integer)
is static;
---Purpose: Adds the selection aSelection with the selection mode

View File

@@ -64,7 +64,7 @@ raises
is
Create (IdMode : Integer = 0) returns mutable Selection;
Create (IdMode : Integer = 0) returns Selection;
--- Purpose: Constructs a selection object defined by the selection mode IdMode.
-- The default setting 0 is the selection mode for a shape in its entirety.

View File

@@ -41,7 +41,7 @@ uses
is
Create returns mutable SelectionManager from SelectMgr;
Create returns SelectionManager from SelectMgr;
--- Purpose: Constructs an empty selection manager object.
---Category: Management of the view selectors

View File

@@ -83,7 +83,7 @@ is
Convert (me:mutable;aSelection : mutable Selection from SelectMgr) is virtual;
Convert (me:mutable;aSelection : Selection from SelectMgr) is virtual;
---Level: Public
---Purpose: to be redefined if conversion is necessary for SensitiveEntities...