695 B
695 B
CLinkedListNode
CLinkedListNode is a helper class used in implementing the CLinkedListNode class.
Description
The CLinkedListNode class is a node of the doubly linked list CLinkedListNode. List navigation methods are implemented in the class.
Declaration
template<typename T>
class CLinkedListNode
Header
#include <Generic\LinkedList.mqh>
Class Methods
| Method | Description |
|---|---|
| List | Returns and sets a pointer to the CLinkedList |
| Next | Returns and sets a pointer to the next node |
| Previous | Returns and sets a pointer to the previous node |
| Value | Returns and sets the node value |