Files
OCCT/src/TCollection/TCollection_StackNode.lxx
2012-03-05 19:23:40 +04:00

12 lines
225 B
Plaintext
Executable File

inline TCollection_StackNode::TCollection_StackNode(const Item& I,const TCollection_MapNodePtr& n)
: TCollection_MapNode(n)
{
myValue = I;
}
inline Item& TCollection_StackNode::Value() const
{
return (Item&)myValue;
}