blob: b0c325c63e7d7227e6a49c07fa0765cbc23aec54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
// File: TDataStd_UAttribute.cxx
// Created: Fri Jun 11 14:39:43 1999
// Author: Sergey RUIN
// <s-ruin@nnov.matra-dtv.fr>
#include <TDataStd_UAttribute.ixx>
#include <TDataStd.hxx>
#include <TDF_Label.hxx>
//=======================================================================
//function : Set
//purpose :
//=======================================================================
Handle(TDataStd_UAttribute) TDataStd_UAttribute::Set (const TDF_Label& label, const Standard_GUID& guid )
{
Handle(TDataStd_UAttribute) A;
if (!label.FindAttribute(guid, A)) {
A = new TDataStd_UAttribute ();
A->SetID(guid);
label.AddAttribute(A);
}
return A;
}
//=======================================================================
//function : TDataStd_UAttribute
//purpose :
//=======================================================================
TDataStd_UAttribute::TDataStd_UAttribute()
{
}
//=======================================================================
//function : ID
//purpose :
//=======================================================================
const Standard_GUID& TDataStd_UAttribute::ID() const
{ return myID; }
//=======================================================================
//function : SetID
//purpose :
//=======================================================================
void TDataStd_UAttribute::SetID( const Standard_GUID& guid)
{
// OCC2932 correction
if(myID == guid) return;
Backup();
myID = guid;
}
//=======================================================================
//function : NewEmpty
//purpose :
//=======================================================================
Handle(TDF_Attribute) TDataStd_UAttribute::NewEmpty () const
{
Handle(TDataStd_UAttribute) A = new TDataStd_UAttribute();
A->SetID(myID);
return A;
}
//=======================================================================
//function : Restore
//purpose :
//=======================================================================
void TDataStd_UAttribute::Restore(const Handle(TDF_Attribute)& with)
{
Handle(TDataStd_UAttribute) A = Handle(TDataStd_UAttribute)::DownCast(with);
SetID( A->ID() );
}
//=======================================================================
//function : Paste
//purpose :
//=======================================================================
void TDataStd_UAttribute::Paste (const Handle(TDF_Attribute)& into,
const Handle(TDF_RelocationTable)& RT) const
{
Handle(TDataStd_UAttribute) A = Handle(TDataStd_UAttribute)::DownCast(into);
A->SetID( myID );
}
//=======================================================================
//function : References
//purpose :
//=======================================================================
void TDataStd_UAttribute::References (const Handle(TDF_DataSet)& DS) const
{
}
//=======================================================================
//function : Dump
//purpose :
//=======================================================================
Standard_OStream& TDataStd_UAttribute::Dump (Standard_OStream& anOS) const
{
anOS << "UAttribute";
TDF_Attribute::Dump(anOS);
return anOS;
}
|