fsfw/container/FIFO.h

27 lines
701 B
C
Raw Normal View History

2020-07-06 13:26:58 +02:00
#ifndef FRAMEWORK_CONTAINER_FIFO_H_
#define FRAMEWORK_CONTAINER_FIFO_H_
2020-07-07 17:44:15 +02:00
#include <framework/returnvalues/HasReturnvaluesIF.h>
2020-07-06 13:26:58 +02:00
#include <framework/container/FIFOBase.h>
2020-07-07 17:44:15 +02:00
#include <array>
2020-07-06 13:38:11 +02:00
2020-04-23 15:03:55 +02:00
/**
2020-07-07 17:44:15 +02:00
* @brief Simple First-In-First-Out data structure with size fixed at
* compile time
2020-07-06 13:40:13 +02:00
* @details
2020-07-07 17:44:15 +02:00
* Performs no dynamic memory allocation.
2020-07-06 13:40:13 +02:00
* The public interface of FIFOBase exposes the user interface for the FIFO.
2020-04-23 15:03:55 +02:00
* @tparam T Entry Type
* @tparam capacity Maximum capacity
*/
2020-07-07 17:44:15 +02:00
template<typename T, size_t capacity>
2020-07-06 13:26:58 +02:00
class FIFO: public FIFOBase<T> {
public:
2020-07-07 17:44:15 +02:00
FIFO(): FIFOBase<T>(values.data(), capacity) {};
2020-07-06 13:26:58 +02:00
private:
2020-07-07 17:44:15 +02:00
std::array<T, capacity> values;
};
2020-07-07 17:44:15 +02:00
#endif /* FRAMEWORK_CONTAINERS_STATICFIFO_H_ */