blob: b0d8d5a98c4fc4104e6b8b6a36ed6d7b741c5c56 (
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
|
// File: STEPSelections_AssemblyLink.lxx
// Created: Wed Mar 24 16:11:23 1999
// Author: data exchange team
// <det@friendox.nnov.matra-dtv.fr>
//=======================================================================
//function : GetNAUO
//purpose :
//=======================================================================
inline Handle(StepRepr_NextAssemblyUsageOccurrence) STEPSelections_AssemblyLink::GetNAUO() const
{
return myNAUO;
}
//=======================================================================
//function : GetSDSR
//purpose :
//=======================================================================
inline Handle(Standard_Transient) STEPSelections_AssemblyLink::GetItem() const
{
return myItem;
}
//=======================================================================
//function : GetComponent
//purpose :
//=======================================================================
inline Handle(STEPSelections_AssemblyComponent) STEPSelections_AssemblyLink::GetComponent() const
{
return myComponent;
}
//=======================================================================
//function : SetNAUO
//purpose :
//=======================================================================
inline void STEPSelections_AssemblyLink::SetNAUO(const Handle(StepRepr_NextAssemblyUsageOccurrence)& nauo)
{
myNAUO = nauo;
}
//=======================================================================
//function : SetCDSR
//purpose :
//=======================================================================
inline void STEPSelections_AssemblyLink::SetItem(const Handle(Standard_Transient)& item)
{
myItem = item;
}
//=======================================================================
//function : SetComponent
//purpose :
//=======================================================================
inline void STEPSelections_AssemblyLink::SetComponent(const Handle(STEPSelections_AssemblyComponent)& part)
{
myComponent = part;
}
|