mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-09-08 14:17:06 +03:00
12 lines
222 B
Plaintext
Executable File
12 lines
222 B
Plaintext
Executable File
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;
|
|
}
|
|
|