0030675: Visualization - remove redundant proxy classes in hierarchy of PrsMgr_Presen...
[occt.git] / src / TopOpeBRepBuild / TopOpeBRepBuild_ShellFaceSet.hxx
1 // Created on: 1993-06-16
2 // Created by: Jean Yves LEBEY
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 _TopOpeBRepBuild_ShellFaceSet_HeaderFile
18 #define _TopOpeBRepBuild_ShellFaceSet_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23
24 #include <TopoDS_Solid.hxx>
25 #include <TopOpeBRepBuild_ShapeSet.hxx>
26 #include <Standard_Address.hxx>
27 #include <TCollection_AsciiString.hxx>
28 #include <TopTools_ListOfShape.hxx>
29 class TopoDS_Shape;
30 class TopoDS_Solid;
31 class TCollection_AsciiString;
32
33
34 //! a bound is a shell, a boundelement is a face.
35 //! The ShapeSet stores :
36 //! - a list of shell (bounds),
37 //! - a list of face (boundelements) to start reconstructions,
38 //! - a map of edge giving the list of face incident to an edge.
39 class TopOpeBRepBuild_ShellFaceSet  : public TopOpeBRepBuild_ShapeSet
40 {
41 public:
42
43   DEFINE_STANDARD_ALLOC
44
45   
46   //! Creates a ShellFaceSet to build blocks of faces
47   //! connected by edges.
48   Standard_EXPORT TopOpeBRepBuild_ShellFaceSet();
49   
50   //! Creates a ShellFaceSet to build blocks of faces
51   //! connected by edges.
52   Standard_EXPORT TopOpeBRepBuild_ShellFaceSet(const TopoDS_Shape& S, const Standard_Address Addr = NULL);
53   
54   Standard_EXPORT const TopoDS_Solid& Solid() const;
55   
56   Standard_EXPORT virtual void AddShape (const TopoDS_Shape& S) Standard_OVERRIDE;
57   
58   Standard_EXPORT virtual void AddStartElement (const TopoDS_Shape& S) Standard_OVERRIDE;
59   
60   Standard_EXPORT virtual void AddElement (const TopoDS_Shape& S) Standard_OVERRIDE;
61   
62   Standard_EXPORT virtual void DumpSS() Standard_OVERRIDE;
63   
64   Standard_EXPORT virtual TCollection_AsciiString SName (const TopoDS_Shape& S, const TCollection_AsciiString& sb = "", const TCollection_AsciiString& sa = "") const Standard_OVERRIDE;
65   
66   Standard_EXPORT virtual TCollection_AsciiString SName (const TopTools_ListOfShape& S, const TCollection_AsciiString& sb = "", const TCollection_AsciiString& sa = "") const Standard_OVERRIDE;
67   
68   Standard_EXPORT virtual TCollection_AsciiString SNameori (const TopoDS_Shape& S, const TCollection_AsciiString& sb = "", const TCollection_AsciiString& sa = "") const Standard_OVERRIDE;
69   
70   Standard_EXPORT virtual TCollection_AsciiString SNameori (const TopTools_ListOfShape& S, const TCollection_AsciiString& sb = "", const TCollection_AsciiString& sa = "") const Standard_OVERRIDE;
71
72
73
74
75 protected:
76
77
78
79
80
81 private:
82
83
84
85   TopoDS_Solid mySolid;
86
87
88 };
89
90
91
92
93
94
95
96 #endif // _TopOpeBRepBuild_ShellFaceSet_HeaderFile