blob: a094e2524dbdd747c51e657ece889910594075df (
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
|
// File: TObj_TModel.cxx
// Created: Thu Nov 23 12:49:09 2004
// Author: Pavel TELKOV
// Copyright: Open CASCADE 2007
// The original implementation Copyright: (C) RINA S.p.A
#include <TObj_TModel.hxx>
#include <Standard_GUID.hxx>
#include <TDF_RelocationTable.hxx>
IMPLEMENT_STANDARD_HANDLE(TObj_TModel,TDF_Attribute)
IMPLEMENT_STANDARD_RTTIEXT(TObj_TModel,TDF_Attribute)
//=======================================================================
//function : GetID
//purpose :
//=======================================================================
const Standard_GUID& TObj_TModel::GetID()
{
static Standard_GUID GModelID ("bbdab6a6-dca9-11d4-ba37-0060b0ee18ea");
return GModelID;
}
//=======================================================================
//function : TObj_TModel
//purpose :
//=======================================================================
TObj_TModel::TObj_TModel()
{
}
//=======================================================================
//function : ID
//purpose :
//=======================================================================
const Standard_GUID& TObj_TModel::ID() const
{
return GetID();
}
//=======================================================================
//function : NewEmpty
//purpose :
//=======================================================================
Handle(TDF_Attribute) TObj_TModel::NewEmpty() const
{
return new TObj_TModel;
}
//=======================================================================
//function : Model
//purpose :
//=======================================================================
Handle(TObj_Model) TObj_TModel::Model() const
{
return myModel;
}
//=======================================================================
//function : Set
//purpose :
//=======================================================================
void TObj_TModel::Set(const Handle(TObj_Model)& theModel)
{
Backup();
myModel = theModel;
}
//=======================================================================
//function : Restore
//purpose :
//=======================================================================
void TObj_TModel::Restore(const Handle(TDF_Attribute)& theWith)
{
Handle(TObj_TModel) R = Handle(TObj_TModel)::DownCast (theWith);
myModel = R->Model();
}
//=======================================================================
//function : Paste
//purpose :
//=======================================================================
void TObj_TModel::Paste (const Handle(TDF_Attribute)& theInto ,
const Handle(TDF_RelocationTable)& /* RT */) const
{
Handle(TObj_TModel) R = Handle(TObj_TModel)::DownCast (theInto);
R->Set(myModel);
}
|