0024510: Remove unused local variables
[occt.git] / src / TopOpeBRepBuild / TopOpeBRepBuild_LoopSet.cdl
1 -- Created on: 1993-03-23
2 -- Created by: Jean Yves LEBEY
3 -- Copyright (c) 1993-1999 Matra Datavision
4 -- Copyright (c) 1999-2014 OPEN CASCADE SAS
5 --
6 -- This file is part of Open CASCADE Technology software library.
7 --
8 -- This library is free software; you can redistribute it and / or modify it
9 -- under the terms of the GNU Lesser General Public version 2.1 as published
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.
13 --
14 -- Alternatively, this file may be used under the terms of Open CASCADE
15 -- commercial license or contractual agreement.
16
17 class LoopSet from TopOpeBRepBuild
18
19 uses
20
21     Loop                     from TopOpeBRepBuild,
22     ListOfLoop               from TopOpeBRepBuild,
23     ListIteratorOfListOfLoop from TopOpeBRepBuild
24
25 is
26     
27     Create returns LoopSet;
28     
29     Delete(me:out) is virtual;
30     ---C++: alias "Standard_EXPORT virtual ~TopOpeBRepBuild_LoopSet(){Delete() ; }"
31     
32     -- filling : append loops (shapes,blocks) in list
33     ChangeListOfLoop(me : in out) returns ListOfLoop is static;
34     ---C++: return &
35
36     -- exploration of the loops
37     InitLoop(me : in out) is virtual;
38     MoreLoop(me) returns Boolean is virtual;
39     NextLoop(me : in out) is virtual;
40     Loop(me) returns Loop from TopOpeBRepBuild is virtual;
41     ---C++: return const &
42     
43 fields
44
45     myListOfLoop : ListOfLoop;
46     myLoopIterator : ListIteratorOfListOfLoop;
47     myLoopIndex : Integer from Standard;
48     myNbLoop : Integer from Standard;
49     
50 end LoopSet from TopOpeBRepBuild;