osurs  0.0.1
Data Fields
QueueNode Struct Reference

Queue node. More...

#include <queue.h>

Collaboration diagram for QueueNode:
Collaboration graph
[legend]

Data Fields

void * data
 
struct QueueNodenext
 

Detailed Description

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.

Field Documentation

◆ data

void* QueueNode::data

Data stored in the node.

◆ next

struct QueueNode* QueueNode::next

Pointer to the next node in the queue.


The documentation for this struct was generated from the following file: