580230590b99643508217d34b1188bf9867d739e
[occt.git] / src / BOP / BOP_Loop.cxx
1 // Created on: 1995-12-19
2 // Created by: Jean Yves LEBEY
3 // Copyright (c) 1995-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 #include <BOP_Loop.ixx>
23
24 //=======================================================================
25 //function : BOP_Loop
26 //purpose  : 
27 //=======================================================================
28 BOP_Loop::BOP_Loop (const TopoDS_Shape& S) 
29 :
30   myIsShape(Standard_True),
31   myShape(S),
32   myBlockIterator(0,0)
33 {
34 }
35
36 //=======================================================================
37 //function : BOP_Loop
38 //purpose  : 
39 //=======================================================================
40   BOP_Loop::BOP_Loop (const BOP_BlockIterator& BI)
41 :
42   myIsShape(Standard_False),
43   myBlockIterator(BI)
44 {
45 }
46
47 //=======================================================================
48 //function : IsShape
49 //purpose  : 
50 //=======================================================================
51   Standard_Boolean BOP_Loop::IsShape() const
52 {
53   return myIsShape;
54 }
55
56 //=======================================================================
57 //function : Shape
58 //purpose  : 
59 //=======================================================================
60   const TopoDS_Shape& BOP_Loop::Shape() const
61 {
62   return myShape;
63 }
64
65 //=======================================================================
66 //function : BlockIterator
67 //purpose  : 
68 //=======================================================================
69   const BOP_BlockIterator& BOP_Loop::BlockIterator() const
70 {
71   return myBlockIterator;
72 }
73
74