#include <queue.h>
Data Fields | |
struct node_def * | head |
struct node_def * | tail |
int | size |
struct node_def* Queue::head [read] |
The head of the queue, the next item to be removed.
struct node_def* Queue::tail [read] |
The tail of the queue, the last item added.
int Queue::size |
The number of elements in the queue.