1
0
forked from fsfw/fsfw

put FIFO in namespace, fixed doc

This commit is contained in:
2020-07-06 13:38:11 +02:00
parent 991385de65
commit b699c8b2b3
4 changed files with 19 additions and 5 deletions

View File

@ -4,6 +4,8 @@
#include <framework/container/FIFOBase.h>
#include <vector>
namespace fifo {
/**
* @brief Simple First-In-First-Out data structure. The maximum size
* can be set in the constructor. THe public interface of
@ -23,4 +25,6 @@ private:
std::vector<T> values;
};
}
#endif /* FRAMEWORK_CONTAINER_FIFO_H_ */