0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / TDataStd / TDataStd_UAttribute.hxx
CommitLineData
42cf5bc1 1// Created on: 1999-06-11
2// Created by: Sergey RUIN
3// Copyright (c) 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 _TDataStd_UAttribute_HeaderFile
18#define _TDataStd_UAttribute_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <Standard_GUID.hxx>
24#include <TDF_Attribute.hxx>
25#include <Standard_OStream.hxx>
26class TDF_Label;
27class Standard_GUID;
28class TDF_Attribute;
29class TDF_RelocationTable;
30class TDF_DataSet;
31
32
33class TDataStd_UAttribute;
34DEFINE_STANDARD_HANDLE(TDataStd_UAttribute, TDF_Attribute)
35
36
37class TDataStd_UAttribute : public TDF_Attribute
38{
39
40public:
41
42
43 //! api class methods
44 //! =============
45 //! Find, or create, a UAttribute attribute with <LocalID> as Local GUID.
46 //! The UAttribute attribute is returned.
47 //! UAttribute methods
48 //! ============
49 Standard_EXPORT static Handle(TDataStd_UAttribute) Set (const TDF_Label& label, const Standard_GUID& LocalID);
50
51 Standard_EXPORT TDataStd_UAttribute();
52
5a1271c8 53 Standard_EXPORT void SetID (const Standard_GUID& LocalID) Standard_OVERRIDE;
42cf5bc1 54
79104795 55 Standard_EXPORT const Standard_GUID& ID() const Standard_OVERRIDE;
42cf5bc1 56
79104795 57 Standard_EXPORT void Restore (const Handle(TDF_Attribute)& with) Standard_OVERRIDE;
42cf5bc1 58
79104795 59 Standard_EXPORT Handle(TDF_Attribute) NewEmpty() const Standard_OVERRIDE;
42cf5bc1 60
79104795 61 Standard_EXPORT void Paste (const Handle(TDF_Attribute)& into, const Handle(TDF_RelocationTable)& RT) const Standard_OVERRIDE;
42cf5bc1 62
63 Standard_EXPORT virtual void References (const Handle(TDF_DataSet)& DS) const Standard_OVERRIDE;
64
65 Standard_EXPORT virtual Standard_OStream& Dump (Standard_OStream& anOS) const Standard_OVERRIDE;
66
bc73b006 67 //! Dumps the content of me into the stream
68 Standard_EXPORT virtual void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const Standard_OVERRIDE;
69
42cf5bc1 70
71
72
92efcf78 73 DEFINE_STANDARD_RTTIEXT(TDataStd_UAttribute,TDF_Attribute)
42cf5bc1 74
75protected:
76
77
78
79
80private:
81
82
83 Standard_GUID myID;
84
85
86};
87
88
89
90
91
92
93
94#endif // _TDataStd_UAttribute_HeaderFile