summaryrefslogtreecommitdiff
path: root/inc/TCollection_SeqNode.lxx
blob: 52ce12eb82450fb13ccfc6b70348e0b402d60e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
inline TCollection_SeqNode::TCollection_SeqNode(const TCollection_SeqNodePtr& n,const TCollection_SeqNodePtr& p ) 
: myNext(n),myPrevious(p)
{
}

inline TCollection_SeqNodePtr& TCollection_SeqNode::Next() const
{
  return (TCollection_SeqNodePtr&)myNext;
}

inline TCollection_SeqNodePtr& TCollection_SeqNode::Previous() const
{
  return (TCollection_SeqNodePtr&)myPrevious;
}