blob: d28756c4b99b0170ff6225c8da97e1a33a0fb777 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
inline TCollection_ListNode::TCollection_ListNode(const Item& I,const TCollection_MapNodePtr& n)
: TCollection_MapNode(n)
{
myValue = I;
}
inline Item& TCollection_ListNode::Value() const
{
return (Item&)myValue;
}
|