mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-06 21:07:36 +08:00
12 lines
250 B
Plaintext
Executable File
12 lines
250 B
Plaintext
Executable File
#include <TCollection_MapNodePtr.hxx>
|
|
|
|
inline TCollection_MapNode::TCollection_MapNode(const TCollection_MapNodePtr& n)
|
|
: myNext(n)
|
|
{
|
|
}
|
|
|
|
inline TCollection_MapNodePtr& TCollection_MapNode::Next() const
|
|
{
|
|
return (TCollection_MapNodePtr&)myNext;
|
|
}
|