1
0
forked from fsfw/fsfw

some more doc for containers

This commit is contained in:
2020-03-19 12:38:11 +01:00
parent a3903f80fb
commit b7e3449b04
5 changed files with 66 additions and 39 deletions

View File

@ -4,7 +4,9 @@
#include <stddef.h>
#include <stdint.h>
/**
* \ingroup container
* @brief Linked list data structure,
* each entry has a pointer to the next entry (singly)
* @ingroup container
*/
template<typename T>
class LinkedElement {