Queue 2.0
Queue handling library
Loading...
Searching...
No Matches
Classes | Typedefs | Enumerations
cppQueue.h File Reference

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

#include <inttypes.h>
#include <stddef.h>
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...
 

Typedefs

typedef enum enumcppQueueType cppQueueType
 

Enumerations

enum  enumcppQueueType { 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

Typedef Documentation

◆ cppQueueType

Enumeration Type Documentation

◆ enumcppQueueType

cppQueue behavior enumeration (FIFO, LIFO)

Enumerator
FIFO 

First In First Out behavior.

LIFO 

Last In First Out behavior.