Next (the Get method)

Returns a pointer to the next node.

CLinkedListNode<T>* Next();

Return Value

Returns a pointer to the next node.

Next (the Set method)

Sets a pointer to the next node

void Next(
   CLinkedListNode<T>*  value     // a pointer to the next node
   );

Parameters

*value

[in]  A pointer to the next node.