put FIFO in namespace, fixed doc
This commit is contained in:
@ -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_ */
|
||||
|
Reference in New Issue
Block a user