A node in the queue. More...
#include <queue.h>

Public Attributes | |
| struct Queue * | next |
| void * | data |
A node in the queue.
This structure represents a node in the queue. Each node contains a pointer to the next node in the queue and a pointer to the data stored in the node.
| struct Queue* Queue::next |
Pointer to the next node in the queue.
| void* Queue::data |
Pointer to the data stored in the node.