|
Queue 2.0
Queue handling library
|
cppQueue handling library (designed on Arduino) More...
#include <inttypes.h>#include <stddef.h>

Go to the source code of this file.
Classes | |
| class | cppQueue |
| Class containing the required methods for handling the queue. More... | |
Typedefs | |
| typedef enum enumcppQueueType | cppQueueType |
Enumerations | |
| enum | enumcppQueueType { FIFO = 0 , LIFO = 1 } |
| cppQueue behavior enumeration (FIFO, LIFO) More... | |
cppQueue handling library (designed on Arduino)
cppQueue handling library (designed on Arduino) This library was designed for Arduino, yet may be compiled without change with gcc for other purposes/targets
| typedef enum enumcppQueueType cppQueueType |
| enum enumcppQueueType |
cppQueue behavior enumeration (FIFO, LIFO)
| Enumerator | |
|---|---|
| FIFO | First In First Out behavior. |
| LIFO | Last In First Out behavior. |