CR32614 Coding - get rid of unsused forward declarations [Adaptor2d to GccAna]
[occt.git] / src / BRepSweep / BRepSweep_Builder.hxx
CommitLineData
42cf5bc1 1// Created on: 1993-01-14
2// Created by: Philippe DAUTRY
3// Copyright (c) 1993-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#ifndef _BRepSweep_Builder_HeaderFile
18#define _BRepSweep_Builder_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <BRep_Builder.hxx>
25#include <TopAbs_Orientation.hxx>
42cf5bc1 26class TopoDS_Shape;
27
28
29//! implements the abstract Builder with the BRep Builder
30class BRepSweep_Builder
31{
32public:
33
34 DEFINE_STANDARD_ALLOC
35
36
37 //! Creates a Builder.
38 Standard_EXPORT BRepSweep_Builder(const BRep_Builder& aBuilder);
39
40 const BRep_Builder& Builder() const;
41
42 //! Returns an empty Compound.
43 Standard_EXPORT void MakeCompound (TopoDS_Shape& aCompound) const;
44
45 //! Returns an empty CompSolid.
46 Standard_EXPORT void MakeCompSolid (TopoDS_Shape& aCompSolid) const;
47
48 //! Returns an empty Solid.
49 Standard_EXPORT void MakeSolid (TopoDS_Shape& aSolid) const;
50
51 //! Returns an empty Shell.
52 Standard_EXPORT void MakeShell (TopoDS_Shape& aShell) const;
53
54 //! Returns an empty Wire.
55 Standard_EXPORT void MakeWire (TopoDS_Shape& aWire) const;
56
57 //! Adds the Shape 1 in the Shape 2, set to
58 //! <Orient> orientation.
59 Standard_EXPORT void Add (TopoDS_Shape& aShape1, const TopoDS_Shape& aShape2, const TopAbs_Orientation Orient) const;
60
61 //! Adds the Shape 1 in the Shape 2.
62 Standard_EXPORT void Add (TopoDS_Shape& aShape1, const TopoDS_Shape& aShape2) const;
63
64
65
66
67protected:
68
69
70
71
72
73private:
74
75
76
77 BRep_Builder myBuilder;
78
79
80};
81
82
83#include <BRepSweep_Builder.lxx>
84
85
86
87
88
89#endif // _BRepSweep_Builder_HeaderFile