Queue 2.1
Queue handling library
Loading...
Searching...
No Matches
cppQueue.h File Reference

cppQueue handling library (designed on Arduino) More...

#include <cinttypes>
#include <cstddef>
Include dependency graph for cppQueue.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  cppQueue
 Class containing the required methods for handling the queue. More...
 

Enumerations

enum  cppQueueType { FIFO = 0 , LIFO = 1 }
 cppQueue behavior enumeration (FIFO, LIFO) More...
 

Detailed Description

cppQueue handling library (designed on Arduino)

Author
SMFSW

cppQueue handling library (designed on Arduino) This library was designed for Arduino, yet may be compiled without change with gcc for other purposes/targets

Enumeration Type Documentation

◆ cppQueueType

cppQueue behavior enumeration (FIFO, LIFO)

Enumerator
FIFO 

First In First Out behavior.

LIFO 

Last In First Out behavior.