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

@@ -23,10 +23,10 @@ uses CString, SessionPilot, ReturnStatus
is
Create returns mutable Activator from StepSelect;
Create returns Activator from StepSelect;
Do (me : mutable; number : Integer; pilot : mutable SessionPilot)
Do (me : mutable; number : Integer; pilot : SessionPilot)
returns ReturnStatus;
---Purpose : Executes a Command Line for StepSelect

View File

@@ -26,7 +26,7 @@ uses CString, AsciiString from TCollection, HSequenceOfInteger from TColStd,
is
Create returns mutable FloatFormat;
Create returns FloatFormat;
---Purpose : Creates a new FloatFormat, with standard options :
-- ZeroSuppress, Main Format = %E,
-- Format between 0.001 and 1000. = %f

View File

@@ -34,7 +34,7 @@ raises InterfaceError
is
Create returns mutable StepType;
Create returns StepType;
---Purpose : Creates a Signature for Step Type. Protocol is undefined here,
-- hence no Signature may yet be produced. The StepType signature
-- requires a Protocol before working

View File

@@ -28,7 +28,7 @@ uses CString, Transient,
is
Create (copymode : Boolean = Standard_True)
returns mutable WorkLibrary from StepSelect;
returns WorkLibrary from StepSelect;
---Purpose : Creates a STEP WorkLibrary
-- <copymode> precises whether Copy is implemented or not
@@ -39,7 +39,7 @@ is
-- 2 : prints labels onky
ReadFile (me; name : CString;
model : out mutable InterfaceModel;
model : out InterfaceModel;
protocol : Protocol from Interface)
returns Integer;
---Purpose : Reads a STEP File and returns a STEP Model (into <mod>),
@@ -53,7 +53,7 @@ is
CopyModel (me;
original : InterfaceModel;
newmodel : mutable InterfaceModel;
newmodel : InterfaceModel;
list : EntityIterator;
TC : in out CopyTool)
returns Boolean is redefined;