0024510: Remove unused local variables
[occt.git] / src / TopOpeBRepBuild / TopOpeBRepBuild_Area1dBuilder.cdl
1 -- Created on: 1995-12-21
2 -- Created by: Jean Yves LEBEY
3 -- Copyright (c) 1995-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 Area1dBuilder from TopOpeBRepBuild 
18     inherits AreaBuilder from TopOpeBRepBuild 
19
20 uses
21     
22     PaveSet from TopOpeBRepBuild,
23     PaveClassifier from TopOpeBRepBuild,
24     
25     Loop from TopOpeBRepBuild,
26     ListOfLoop from TopOpeBRepBuild,
27     ListIteratorOfListOfLoop from TopOpeBRepBuild,
28     ListOfListOfLoop from TopOpeBRepBuild,
29     ListIteratorOfListOfListOfLoop from TopOpeBRepBuild,
30     LoopSet from TopOpeBRepBuild,
31     LoopClassifier from TopOpeBRepBuild,
32     LoopEnum from TopOpeBRepBuild
33     
34 is
35
36     Create returns Area1dBuilder;
37
38     Create(LS : in out PaveSet; LC : in out PaveClassifier;
39            ForceClass : Boolean = Standard_False) returns Area1dBuilder;
40     ---Purpose: Creates a Area1dBuilder to find the areas of
41     -- the shapes described by <LS> using the classifier <LC>.
42     
43     InitAreaBuilder(me : in out;
44                     LS : in out LoopSet; LC : in out LoopClassifier;
45                     ForceClass : Boolean = Standard_False)
46     ---Purpose: Sets a Area1dBuilder to find the areas of
47     -- the shapes described by <LS> using the classifier <LC>.
48     is redefined;
49
50     ADD_Loop_TO_LISTOFLoop(me; L   : Loop;
51                                LOL : in out ListOfLoop;
52                                  s : Address = NULL) is redefined;
53
54     REM_Loop_FROM_LISTOFLoop(me; ITLOL : in out ListIteratorOfListOfLoop; 
55                                    LOL : in out ListOfLoop;
56                                      s : Address = NULL) is redefined;
57
58     ADD_LISTOFLoop_TO_LISTOFLoop(me; LOL1 : in out ListOfLoop;
59                                      LOL2 : in out ListOfLoop;
60                                        s  : Address = NULL;
61                                        s1 : Address = NULL;
62                                        s2 : Address = NULL) is redefined;
63
64     DumpList(myclass; L:ListOfLoop);
65     
66 end Area1dBuilder from TopOpeBRepBuild;