1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-08 14:17:06 +03:00
Files
occt/src/TCollection/TCollection_ListNode.lxx
2012-03-05 19:23:40 +04:00

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;
}