mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +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:
@@ -53,7 +53,7 @@ uses
|
||||
Shape from TopoDS
|
||||
|
||||
is
|
||||
Create returns mutable Algo from HLRBRep;
|
||||
Create returns Algo from HLRBRep;
|
||||
---Purpose: Constructs an empty framework for the
|
||||
-- calculation of visible and hidden lines of a shape in a projection.
|
||||
-- Use the function:
|
||||
@@ -62,7 +62,7 @@ is
|
||||
-- - Update to compute the outlines of the shape, and
|
||||
-- - Hide to compute the visible and hidden lines of the shape.
|
||||
|
||||
Create(A : Algo from HLRBRep) returns mutable Algo from HLRBRep;
|
||||
Create(A : Algo from HLRBRep) returns Algo from HLRBRep;
|
||||
|
||||
Add(me : mutable; S : Shape from TopoDS;
|
||||
SData : TShared from MMgt;
|
||||
|
@@ -34,7 +34,7 @@ Create(V : Intersection from HLRAlgo;
|
||||
StateAfter : State from TopAbs;
|
||||
EdgeBefore : State from TopAbs;
|
||||
EdgeAfter : State from TopAbs)
|
||||
returns mutable AreaLimit from HLRBRep;
|
||||
returns AreaLimit from HLRBRep;
|
||||
---Purpose: The previous and next field are set to NULL.
|
||||
|
||||
StateBefore(me : mutable; St : State from TopAbs)
|
||||
@@ -77,10 +77,10 @@ is static;
|
||||
EdgeAfter(me) returns State from TopAbs
|
||||
is static;
|
||||
|
||||
Previous(me) returns mutable AreaLimit from HLRBRep
|
||||
Previous(me) returns AreaLimit from HLRBRep
|
||||
is static;
|
||||
|
||||
Next(me) returns mutable AreaLimit from HLRBRep
|
||||
Next(me) returns AreaLimit from HLRBRep
|
||||
is static;
|
||||
|
||||
Clear(me : mutable)
|
||||
|
@@ -61,7 +61,7 @@ is
|
||||
Create(NV, NE, NF : Integer from Standard)
|
||||
---Purpose: Create an empty data structure of <NV> vertices,
|
||||
-- <NE> edges and <NF> faces.
|
||||
returns mutable Data from HLRBRep;
|
||||
returns Data from HLRBRep;
|
||||
|
||||
Write(me : mutable; DS : Data from HLRBRep;
|
||||
dv,de,df : Integer from Standard)
|
||||
|
@@ -32,10 +32,10 @@ raises
|
||||
OutOfRange from Standard
|
||||
|
||||
is
|
||||
Create returns mutable InternalAlgo from HLRBRep;
|
||||
Create returns InternalAlgo from HLRBRep;
|
||||
|
||||
Create(A : InternalAlgo from HLRBRep)
|
||||
returns mutable InternalAlgo from HLRBRep;
|
||||
returns InternalAlgo from HLRBRep;
|
||||
|
||||
Projector(me: mutable; P : Projector from HLRAlgo)
|
||||
---Purpose: set the projector.
|
||||
|
@@ -92,7 +92,7 @@ raises
|
||||
|
||||
is
|
||||
Create
|
||||
returns mutable PolyAlgo from HLRBRep;
|
||||
returns PolyAlgo from HLRBRep;
|
||||
---Purpose: Constructs an empty framework for the
|
||||
-- calculation of the visible and hidden lines of a shape in a projection.
|
||||
-- Use the functions:
|
||||
@@ -103,10 +103,10 @@ is
|
||||
-- The shape or shapes to be visualized must have already been triangulated.
|
||||
|
||||
Create(A : PolyAlgo from HLRBRep)
|
||||
returns mutable PolyAlgo from HLRBRep;
|
||||
returns PolyAlgo from HLRBRep;
|
||||
|
||||
Create(S : Shape from TopoDS)
|
||||
returns mutable PolyAlgo from HLRBRep;
|
||||
returns PolyAlgo from HLRBRep;
|
||||
|
||||
NbShapes(me) returns Integer from Standard
|
||||
---C++: inline
|
||||
|
@@ -40,7 +40,7 @@ is
|
||||
|
||||
ExploreFace(myclass;
|
||||
S : OutLiner from HLRTopoBRep;
|
||||
DS : mutable Data from HLRBRep;
|
||||
DS : Data from HLRBRep;
|
||||
FM : IndexedMapOfShape from TopTools;
|
||||
EM : IndexedMapOfShape from TopTools;
|
||||
i : in out Integer from Standard;
|
||||
@@ -50,7 +50,7 @@ is
|
||||
|
||||
ExploreShape(myclass;
|
||||
S : OutLiner from HLRTopoBRep;
|
||||
DS : mutable Data from HLRBRep;
|
||||
DS : Data from HLRBRep;
|
||||
FM : IndexedMapOfShape from TopTools;
|
||||
EM : IndexedMapOfShape from TopTools)
|
||||
is private;
|
||||
|
Reference in New Issue
Block a user