distortos  v0.7.0
object-oriented C++ RTOS for microcontrollers
DynamicRawFifoQueue.hpp
Go to the documentation of this file.
1 
12 #ifndef INCLUDE_DISTORTOS_DYNAMICRAWFIFOQUEUE_HPP_
13 #define INCLUDE_DISTORTOS_DYNAMICRAWFIFOQUEUE_HPP_
14 
15 #include "RawFifoQueue.hpp"
16 
17 namespace distortos
18 {
19 
27 {
28 public:
29 
37  DynamicRawFifoQueue(size_t elementSize, size_t queueSize);
38 };
39 
40 } // namespace distortos
41 
42 #endif // INCLUDE_DISTORTOS_DYNAMICRAWFIFOQUEUE_HPP_
RawFifoQueue class is very similar to FifoQueue, but optimized for binary serializable types (like PO...
Definition: RawFifoQueue.hpp:30
RawFifoQueue class header.
DynamicRawFifoQueue class is a variant of RawFifoQueue that has dynamic storage for queue's contents.
Definition: DynamicRawFifoQueue.hpp:26
DynamicRawFifoQueue(size_t elementSize, size_t queueSize)
DynamicRawFifoQueue's constructor.
Definition: DynamicRawFifoQueue.cpp:23
Top-level namespace of distortos project.
Definition: buttons.hpp:33