mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-16 06:25:04 +08:00
12 lines
225 B
Plaintext
Executable File
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;
|
|
}
|
|
|