blob: ea150c0739686a7d5625c9ac64a72e7c8bb90dbd (
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
|
// File: TDF_AttributeDelta.cxx
// ----------------------
// Author: DAUTRY Philippe
// <fid@fox.paris1.matra-dtv.fr>
// Copyright: Matra Datavision 1997
// Version: 0.0
// History: Version Date Purpose
// 0.0 Sep 8 1997 Creation
#include <TDF_AttributeDelta.ixx>
#include <Standard_GUID.hxx>
#include <TDF_Label.hxx>
#include <TDF_Tool.hxx>
#include <TCollection_AsciiString.hxx>
//=======================================================================
//function : TDF_AttributeDelta
//purpose :
//=======================================================================
TDF_AttributeDelta::TDF_AttributeDelta
(const Handle(TDF_Attribute)& anAttribute)
: myAttribute(anAttribute),
myLabel(anAttribute->Label())
{}
//=======================================================================
//function : Label
//purpose :
//=======================================================================
TDF_Label TDF_AttributeDelta::Label() const
{ return myLabel; }
//=======================================================================
//function : Attribute
//purpose :
//=======================================================================
Handle(TDF_Attribute) TDF_AttributeDelta::Attribute() const
{ return myAttribute; }
//=======================================================================
//function : ID
//purpose :
//=======================================================================
Standard_GUID TDF_AttributeDelta::ID() const
{ return myAttribute->ID(); }
//=======================================================================
//function : Dump
//purpose :
//=======================================================================
Standard_OStream& TDF_AttributeDelta::Dump(Standard_OStream& OS) const
{
static TCollection_AsciiString entry;
TDF_Tool::Entry(Label(),entry);
OS<<this->DynamicType()->Name()<<" at "<<entry;
OS<<" on "<<Attribute()->DynamicType()->Name();
return OS;
}
|