0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / HeaderSection / HeaderSection_FileDescription.hxx
CommitLineData
42cf5bc1 1// Created on: 1994-06-16
2// Created by: EXPRESS->CDL V0.2 Translator
3// Copyright (c) 1994-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 _HeaderSection_FileDescription_HeaderFile
18#define _HeaderSection_FileDescription_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <Interface_HArray1OfHAsciiString.hxx>
25e59720 24#include <Standard_Transient.hxx>
42cf5bc1 25#include <Standard_Integer.hxx>
26class TCollection_HAsciiString;
27
28
29class HeaderSection_FileDescription;
25e59720 30DEFINE_STANDARD_HANDLE(HeaderSection_FileDescription, Standard_Transient)
42cf5bc1 31
32
25e59720 33class HeaderSection_FileDescription : public Standard_Transient
42cf5bc1 34{
35
36public:
37
38
39 //! Returns a FileDescription
40 Standard_EXPORT HeaderSection_FileDescription();
41
42 Standard_EXPORT void Init (const Handle(Interface_HArray1OfHAsciiString)& aDescription, const Handle(TCollection_HAsciiString)& aImplementationLevel);
43
44 Standard_EXPORT void SetDescription (const Handle(Interface_HArray1OfHAsciiString)& aDescription);
45
46 Standard_EXPORT Handle(Interface_HArray1OfHAsciiString) Description() const;
47
48 Standard_EXPORT Handle(TCollection_HAsciiString) DescriptionValue (const Standard_Integer num) const;
49
50 Standard_EXPORT Standard_Integer NbDescription() const;
51
52 Standard_EXPORT void SetImplementationLevel (const Handle(TCollection_HAsciiString)& aImplementationLevel);
53
54 Standard_EXPORT Handle(TCollection_HAsciiString) ImplementationLevel() const;
55
56
57
58
25e59720 59 DEFINE_STANDARD_RTTIEXT(HeaderSection_FileDescription,Standard_Transient)
42cf5bc1 60
61protected:
62
63
64
65
66private:
67
68
69 Handle(Interface_HArray1OfHAsciiString) description;
70 Handle(TCollection_HAsciiString) implementationLevel;
71
72
73};
74
75
76
77
78
79
80
81#endif // _HeaderSection_FileDescription_HeaderFile