0024830: Remove redundant keyword 'mutable' in CDL declarations
[occt.git] / src / StepShape / StepShape_FacetedBrepAndBrepWithVoids.cdl
CommitLineData
b311480e 1-- Created on: 1994-06-17
2-- Created by: EXPRESS->CDL V0.2 Translator
3-- Copyright (c) 1994-1999 Matra Datavision
973c2be1 4-- Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5--
973c2be1 6-- This file is part of Open CASCADE Technology software library.
b311480e 7--
d5f74e42 8-- This library is free software; you can redistribute it and/or modify it under
9-- the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10-- by the Free Software Foundation, with special exception defined in the file
11-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12-- distribution for complete text of the license and disclaimer of any warranty.
b311480e 13--
973c2be1 14-- Alternatively, this file may be used under the terms of Open CASCADE
15-- commercial license or contractual agreement.
7fd59977 16
17class FacetedBrepAndBrepWithVoids from StepShape
18
19inherits ManifoldSolidBrep from StepShape
20
21
22 --- This class is an implementation of EXPRESS
23 -- ANDOR Subtype Declaration.
24uses
25
26 FacetedBrep from StepShape,
27 BrepWithVoids from StepShape,
28 ClosedShell from StepShape,
29 HArray1OfOrientedClosedShell from StepShape,
30 OrientedClosedShell from StepShape,
31 HAsciiString from TCollection
32is
33
6e33d3ce 34 Create returns FacetedBrepAndBrepWithVoids;
7fd59977 35 ---Purpose: Returns a FacetedBrepAndBrepWithVoids
36
37
38 Init (me : mutable;
6e33d3ce 39 aName : HAsciiString from TCollection;
40 aOuter : ClosedShell from StepShape) is redefined;
7fd59977 41
42 Init (me : mutable;
6e33d3ce 43 aName : HAsciiString from TCollection;
44 aOuter : ClosedShell from StepShape;
45 aFacetedBrep : FacetedBrep from StepShape;
46 aBrepWithVoids : BrepWithVoids from StepShape);
7fd59977 47
48 Init (me : mutable;
6e33d3ce 49 aName : HAsciiString from TCollection;
50 aOuter : ClosedShell from StepShape;
51 aVoids : HArray1OfOrientedClosedShell from StepShape);
7fd59977 52
53 -- Specific Methods for Field Data Access --
54
6e33d3ce 55 SetFacetedBrep(me : mutable; aFacetedBrep : FacetedBrep);
56 FacetedBrep (me) returns FacetedBrep;
57 SetBrepWithVoids(me : mutable; aBrepWithVoids : BrepWithVoids);
58 BrepWithVoids (me) returns BrepWithVoids;
7fd59977 59
60 -- Specific Methods for ANDOR Field Data Access --
61
6e33d3ce 62 SetVoids(me : mutable; aVoids : HArray1OfOrientedClosedShell);
63 Voids (me) returns HArray1OfOrientedClosedShell;
64 VoidsValue (me; num : Integer) returns OrientedClosedShell;
7fd59977 65 NbVoids (me) returns Integer;
66
67 -- Specific Methods for ANDOR Field Data Access --
68
69
70fields
71
72 facetedBrep : FacetedBrep from StepShape;
73 brepWithVoids : BrepWithVoids from StepShape;
74
75end FacetedBrepAndBrepWithVoids;