0024157: Parallelization of assembly part of BO
[occt.git] / src / TopOpeBRepBuild / TopOpeBRepBuild_FuseFace.cdl
1 -- Created on: 1998-07-28
2 -- Created by: LECLERE Florence
3 -- Copyright (c) 1998-1999 Matra Datavision
4 -- Copyright (c) 1999-2012 OPEN CASCADE SAS
5 --
6 -- The content of this file is subject to the Open CASCADE Technology Public
7 -- License Version 6.5 (the "License"). You may not use the content of this file
8 -- except in compliance with the License. Please obtain a copy of the License
9 -- at http://www.opencascade.org and read it completely before using this file.
10 --
11 -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 --
14 -- The Original Code and all software distributed under the License is
15 -- distributed on an "AS IS" basis, without warranty of any kind, and the
16 -- Initial Developer hereby disclaims all such warranties, including without
17 -- limitation, any warranties of merchantability, fitness for a particular
18 -- purpose or non-infringement. Please see the License for the specific terms
19 -- and conditions governing the rights and limitations under the License.
20
21
22 class FuseFace from TopOpeBRepBuild
23
24         ---Purpose: 
25
26 uses Shape                     from TopoDS,
27      Face                      from TopoDS,
28      Edge                      from TopoDS,
29      Vertex                    from TopoDS,
30      DataMapOfShapeListOfShape from TopTools,
31      ListOfShape               from TopTools
32
33
34 is
35
36
37     Create
38         returns FuseFace from TopOpeBRepBuild;
39         ---C++: inline
40         --   
41         
42         
43     Create(LIF : ListOfShape from TopTools;
44            LRF : ListOfShape from TopTools;     
45            CXM : Integer from Standard)
46            
47         ---C++: inline
48         --      
49         returns FuseFace from TopOpeBRepBuild;
50
51
52     Init(me: in out; LIF : ListOfShape from TopTools;
53                      LRF : ListOfShape from TopTools;
54                      CXM : Integer from Standard)    
55         is static;
56
57
58     PerformFace(me: in out)
59   
60         is static;
61
62
63     PerformEdge(me: in out)
64   
65         is static;
66
67     ClearEdge(me: in out)
68     
69         is static;
70         
71     ClearVertex(me: in out)
72     
73         is static;
74         
75     IsDone(me)
76     
77         returns Boolean from Standard
78         ---C++: inline
79         is static;      
80         
81     IsModified(me)
82     
83         returns Boolean from Standard
84         ---C++: inline
85         is static;      
86             
87     LFuseFace(me)
88     
89         returns ListOfShape from TopTools
90         ---C++: return const&
91         is static;
92
93     LInternEdge(me)
94     
95         returns ListOfShape from TopTools
96         ---C++: return const&
97         is static;
98         
99     LExternEdge(me)
100     
101         returns ListOfShape from TopTools
102         ---C++: return const&
103         is static;
104         
105     LModifEdge(me)
106     
107         returns ListOfShape from TopTools
108         ---C++: return const&
109         is static;
110         
111     LInternVertex(me)
112     
113         returns ListOfShape from TopTools
114         ---C++: return const&
115         is static;
116         
117     LExternVertex(me)
118     
119         returns ListOfShape from TopTools
120         ---C++: return const&
121         is static;
122         
123     LModifVertex(me)
124     
125         returns ListOfShape from TopTools
126         ---C++: return const&
127         is static;
128         
129                 
130 fields
131
132     myLIF      : ListOfShape               from TopTools;
133     myLRF      : ListOfShape               from TopTools;
134     myLFF      : ListOfShape               from TopTools;
135     
136     myLIE      : ListOfShape               from TopTools is protected;
137     myLEE      : ListOfShape               from TopTools is protected;
138     myLME      : ListOfShape               from TopTools is protected;
139         
140     myLIV      : ListOfShape               from TopTools is protected;
141     myLEV      : ListOfShape               from TopTools is protected;
142     myLMV      : ListOfShape               from TopTools is protected;
143
144     myInternal : Boolean                   from Standard; 
145     myModified : Boolean                   from Standard;
146     myDone     : Boolean                   from Standard;
147     
148 end FuseFace;