/RingBuffer

A generic FIFO ring buffer class

Primary LanguageC++GNU General Public License v3.0GPL-3.0

RingBuffer

RingBuffer is a simple C++ single header library that implements a generic FIFO ring buffer.

Usage

See the example for how to use. You can run the example on linux based distributations by doing the following:

mkdir build
cd build 
cmake ..
cmake --build .
./RingBuffer

Limitations

No overflow handling currently exists