0027067: Avoid use of virtual methods for implementation of destructors in legacy...
[occt.git] / src / BRepBuilderAPI / BRepBuilderAPI_MakeShape.cxx
CommitLineData
b311480e 1// Created on: 1993-07-23
2// Created by: Remi LEQUETTE
3// Copyright (c) 1993-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 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
973c2be1 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
42cf5bc1 17
18#include <BRepBuilderAPI_MakeShape.hxx>
19#include <StdFail_NotDone.hxx>
7fd59977 20#include <TopoDS.hxx>
7fd59977 21#include <TopoDS_Edge.hxx>
42cf5bc1 22#include <TopoDS_Face.hxx>
23#include <TopoDS_Shape.hxx>
7fd59977 24#include <TopoDS_Vertex.hxx>
25
7fd59977 26//=======================================================================
27//function : BRepBuilderAPI_MakeShape
28//purpose :
29//=======================================================================
7fd59977 30BRepBuilderAPI_MakeShape::BRepBuilderAPI_MakeShape()
31{
32}
33
7fd59977 34//=======================================================================
35//function : Build
36//purpose :
37//=======================================================================
38
39void BRepBuilderAPI_MakeShape::Build()
40{
41}
42
43//=======================================================================
44//function : Shape
45//purpose :
46//=======================================================================
47
ecac41a9 48const TopoDS_Shape& BRepBuilderAPI_MakeShape::Shape()
7fd59977 49{
50 if (!IsDone()) {
51 // the following is const cast away
52 ((BRepBuilderAPI_MakeShape*) (void*) this)->Build();
53 Check();
54 }
55 return myShape;
56}
57
58
59//=======================================================================
60//function : operator
61//purpose :
62//=======================================================================
63
ecac41a9 64BRepBuilderAPI_MakeShape::operator TopoDS_Shape()
7fd59977 65{
66 return Shape();
67}
68
69
70//=======================================================================
71//function : Generated
72//purpose :
73//=======================================================================
74
35e08fe8 75const TopTools_ListOfShape& BRepBuilderAPI_MakeShape::Generated (const TopoDS_Shape&)
7fd59977 76
77{
78 myGenerated.Clear();
79 return myGenerated;
80}
81
82
83//=======================================================================
84//function : Modified
85//purpose :
86//=======================================================================
87
35e08fe8 88const TopTools_ListOfShape& BRepBuilderAPI_MakeShape::Modified (const TopoDS_Shape&)
7fd59977 89
90{
91 myGenerated.Clear();
92 return myGenerated;
93}
94
95
96//=======================================================================
97//function : IsDeleted
98//purpose :
99//=======================================================================
100
35e08fe8 101Standard_Boolean BRepBuilderAPI_MakeShape::IsDeleted (const TopoDS_Shape&)
7fd59977 102
103{
104 return Standard_False;
105}
106
107
108
109