0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / BRepAdaptor / BRepAdaptor_HSurface.hxx
1 // Created on: 1993-02-19
2 // Created by: Remi LEQUETTE
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 _BRepAdaptor_HSurface_HeaderFile
18 #define _BRepAdaptor_HSurface_HeaderFile
19
20 #include <Standard.hxx>
21 #include <Standard_Type.hxx>
22
23 #include <BRepAdaptor_Surface.hxx>
24 #include <Adaptor3d_HSurface.hxx>
25 class Standard_OutOfRange;
26 class Standard_NoSuchObject;
27 class Standard_DomainError;
28 class BRepAdaptor_Surface;
29 class Adaptor3d_Surface;
30
31
32 class BRepAdaptor_HSurface;
33 DEFINE_STANDARD_HANDLE(BRepAdaptor_HSurface, Adaptor3d_HSurface)
34
35
36 class BRepAdaptor_HSurface : public Adaptor3d_HSurface
37 {
38
39 public:
40
41   
42   //! Creates an empty GenHSurface.
43   Standard_EXPORT BRepAdaptor_HSurface();
44   
45   //! Creates a GenHSurface from a Surface.
46   Standard_EXPORT BRepAdaptor_HSurface(const BRepAdaptor_Surface& S);
47   
48   //! Sets the field of the GenHSurface.
49   Standard_EXPORT void Set (const BRepAdaptor_Surface& S);
50   
51   //! Returns a reference to the Surface inside the HSurface.
52   //! This is redefined from HSurface, cannot be inline.
53   Standard_EXPORT const Adaptor3d_Surface& Surface() const Standard_OVERRIDE;
54   
55   //! Returns the surface used to create the GenHSurface.
56     BRepAdaptor_Surface& ChangeSurface();
57
58
59
60
61   DEFINE_STANDARD_RTTI_INLINE(BRepAdaptor_HSurface,Adaptor3d_HSurface)
62
63 protected:
64
65
66   BRepAdaptor_Surface mySurf;
67
68
69 private:
70
71
72
73
74 };
75
76 #define TheSurface BRepAdaptor_Surface
77 #define TheSurface_hxx <BRepAdaptor_Surface.hxx>
78 #define Adaptor3d_GenHSurface BRepAdaptor_HSurface
79 #define Adaptor3d_GenHSurface_hxx <BRepAdaptor_HSurface.hxx>
80 #define Handle_Adaptor3d_GenHSurface Handle(BRepAdaptor_HSurface)
81
82 #include <Adaptor3d_GenHSurface.lxx>
83
84 #undef TheSurface
85 #undef TheSurface_hxx
86 #undef Adaptor3d_GenHSurface
87 #undef Adaptor3d_GenHSurface_hxx
88 #undef Handle_Adaptor3d_GenHSurface
89
90
91
92
93 #endif // _BRepAdaptor_HSurface_HeaderFile