blob: 80bed7a7aba2e36f0860e19f79eba9618c26c6c1 (
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
|
// File: TDF_DeltaOnAddition.cxx
// -----------------------
// Author: DAUTRY Philippe
// <fid@fox.paris1.matra-dtv.fr>
// Copyright: Matra Datavision 1997
// Version: 0.0
// History: Version Date Purpose
// 0.0 Oct 10 1997 Creation
#include <TDF_DeltaOnAddition.ixx>
#include <Standard_GUID.hxx>
#include <TDF_Label.hxx>
//=======================================================================
//function : TDF_DeltaOnAddition
//purpose :
//=======================================================================
TDF_DeltaOnAddition::TDF_DeltaOnAddition
(const Handle(TDF_Attribute)& anAtt)
: TDF_AttributeDelta(anAtt)
{}
//=======================================================================
//function : Apply
//purpose :
//=======================================================================
void TDF_DeltaOnAddition::Apply()
{
Handle(TDF_Attribute) currentAtt;
if (Label().FindAttribute(ID(),currentAtt)) {
Label().ForgetAttribute (currentAtt);
}
}
|