Previous (the Get method)

Returns a pointer to the previous node.

CLinkedListNode<T>* Previous();

Return Value

Returns a pointer to the previous node.

Previous (the Set method)

Sets a pointer to the previous node.

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

Parameters

*value

[in]  A pointer to the previous node.