0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / Prs3d / Prs3d_BasicAspect.hxx
1 // Created on: 2000-02-15
2 // Created by: Gerard GRAS
3 // Copyright (c) 2000-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #ifndef _Prs3d_BasicAspect_HeaderFile
17 #define _Prs3d_BasicAspect_HeaderFile
18
19 #include <Standard.hxx>
20 #include <Standard_OStream.hxx>
21 #include <Standard_Type.hxx>
22 #include <Standard_Transient.hxx>
23
24 //! All basic Prs3d_xxxAspect must inherits from this class
25 //! The aspect classes qualifies how to represent a given kind of object.
26 class Prs3d_BasicAspect : public Standard_Transient
27 {
28   DEFINE_STANDARD_RTTIEXT(Prs3d_BasicAspect, Standard_Transient)
29
30   //! Dumps the content of me into the stream
31   virtual void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const = 0;
32
33 };
34
35 DEFINE_STANDARD_HANDLE(Prs3d_BasicAspect, Standard_Transient)
36
37 #endif // _Prs3d_BasicAspect_HeaderFile