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

@@ -88,11 +88,11 @@ is
BuildTool(me) returns BuildTool from TopOpeBRepDS;
---C++: return const &
Perform (me:in out;HDS:mutable HDataStructure) is virtual;
Perform (me:in out;HDS: HDataStructure) is virtual;
---Purpose: Stores the data structure <HDS>,
-- Create shapes from the new geometries.
--modified by NIZHNY-MZV Thu Nov 4 13:20:25 1999
Perform (me:in out;HDS:mutable HDataStructure;S1,S2:Shape) is virtual;
Perform (me:in out;HDS: HDataStructure;S1,S2:Shape) is virtual;
---Purpose: Stores the data structure <HDS>,
-- Create shapes from the new geometries,
-- Evaluates if an operation performed on shapes S1,S2
@@ -201,11 +201,11 @@ is
Section(me:in out) returns ListOfShape;
---C++: return const &
BuildVertices (me:in out;DS:mutable HDataStructure);
BuildVertices (me:in out;DS: HDataStructure);
---Purpose: update the DS by creating new geometries.
-- create vertices on DS points.
BuildEdges (me:in out;DS:mutable HDataStructure);
BuildEdges (me:in out;DS: HDataStructure);
---Purpose: update the DS by creating new geometries.
-- create shapes from the new geometries.
@@ -221,15 +221,15 @@ is
-- private
-------
BuildEdges (me:in out;iC:Integer;DS:mutable HDataStructure) is protected;
BuildEdges (me:in out;iC:Integer;DS: HDataStructure) is protected;
---Purpose: update the DS by creating new geometries.
-- create edges on the new curve <Icurv>.
BuildFaces (me:in out;iS:Integer;DS:mutable HDataStructure) is protected;
BuildFaces (me:in out;iS:Integer;DS: HDataStructure) is protected;
---Purpose: update the DS by creating new geometries.
-- create faces on the new surface <ISurf>.
BuildFaces (me:in out;DS:mutable HDataStructure) is protected;
BuildFaces (me:in out;DS: HDataStructure) is protected;
---Purpose: update the DS by creating new geometries.
-- create shapes from the new geometries.

View File

@@ -57,7 +57,7 @@ is
---Purpose: Removes all splits and merges already performed.
-- Does NOT clear the handled DS (except ShapeWithStatesMaps).
Perform (me:in out;HDS:mutable HDataStructure from TopOpeBRepDS ) is redefined;
Perform (me:in out;HDS: HDataStructure from TopOpeBRepDS ) is redefined;
Perform(me: out; HDS : HDataStructure from TopOpeBRepDS;
S1 : Shape from TopoDS;

View File

@@ -46,18 +46,18 @@ raises
is
Create (BT : BuildTool from TopOpeBRepDS) returns mutable HBuilder;
Create (BT : BuildTool from TopOpeBRepDS) returns HBuilder;
BuildTool(me) returns BuildTool from TopOpeBRepDS;
---C++: return const &
Perform (me : mutable; HDS : mutable HDataStructure from TopOpeBRepDS)
Perform (me : mutable; HDS : HDataStructure from TopOpeBRepDS)
is static;
---Purpose:
-- Stores the data structure <HDS>,
-- Create shapes from the new geometries described in <HDS>.
Perform (me : mutable; HDS : mutable HDataStructure from TopOpeBRepDS;
Perform (me : mutable; HDS : HDataStructure from TopOpeBRepDS;
S1,S2 : Shape from TopoDS)
is static;
---Purpose:

View File

@@ -29,8 +29,8 @@ uses
is
Create(S : Shape from TopoDS) returns mutable Loop;
Create(BI : BlockIterator) returns mutable Loop;
Create(S : Shape from TopoDS) returns Loop;
Create(BI : BlockIterator) returns Loop;
IsShape(me) returns Boolean from Standard is virtual;

View File

@@ -25,7 +25,7 @@ uses
Kind from TopOpeBRepDS
is
Create(V : Shape from TopoDS; P : Real; bound : Boolean) returns mutable Pave;
Create(V : Shape from TopoDS; P : Real; bound : Boolean) returns Pave;
---Purpose: V = vertex, P = parameter of vertex <V>
-- bound = True if <V> is an old vertex
-- bound = False if <V> is a new vertex