|
osurs
0.0.1
|
#include <queue.h>

Data Fields | |
| void * | data |
| struct QueueNode * | next |
Queue node.
This structure represents a node in a Queue data structure. It consists of a void pointer to the node's data and a pointer to the next node in the queue.
| void* QueueNode::data |
Data stored in the node.
| struct QueueNode* QueueNode::next |
Pointer to the next node in the queue.