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