0027067: Avoid use of virtual methods for implementation of destructors in legacy...
[occt.git] / src / TopOpeBRepBuild / TopOpeBRepBuild_Loop.cxx
... / ...
CommitLineData
1// Created on: 1995-12-19
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 under
9// the terms of the GNU Lesser General Public License 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
18#include <Standard_Type.hxx>
19#include <TopoDS_Shape.hxx>
20#include <TopOpeBRepBuild_BlockIterator.hxx>
21#include <TopOpeBRepBuild_Loop.hxx>
22
23IMPLEMENT_STANDARD_RTTIEXT(TopOpeBRepBuild_Loop,MMgt_TShared)
24
25//=======================================================================
26//function : TopOpeBRepBuild_Loop
27//purpose :
28//=======================================================================
29TopOpeBRepBuild_Loop::TopOpeBRepBuild_Loop
30(const TopoDS_Shape& S) :
31myIsShape(Standard_True),myShape(S),myBlockIterator(0,0)
32{
33}
34
35//=======================================================================
36//function : TopOpeBRepBuild_Loop
37//purpose :
38//=======================================================================
39
40TopOpeBRepBuild_Loop::TopOpeBRepBuild_Loop
41(const TopOpeBRepBuild_BlockIterator& BI) :
42myIsShape(Standard_False),myBlockIterator(BI)
43{
44}
45
46//=======================================================================
47//function : IsShape
48//purpose :
49//=======================================================================
50
51Standard_Boolean TopOpeBRepBuild_Loop::IsShape() const
52{
53 return myIsShape;
54}
55
56//=======================================================================
57//function : Shape
58//purpose :
59//=======================================================================
60
61const TopoDS_Shape& TopOpeBRepBuild_Loop::Shape() const
62{
63 return myShape;
64}
65
66//=======================================================================
67//function : BlockIterator
68//purpose :
69//=======================================================================
70
71const TopOpeBRepBuild_BlockIterator& TopOpeBRepBuild_Loop::BlockIterator() const
72{
73 return myBlockIterator;
74}
75
76//=======================================================================
77//function : Dump
78//purpose :
79//=======================================================================
80
81void TopOpeBRepBuild_Loop::Dump() const
82{
83}