distortos  v0.7.0
object-oriented C++ RTOS for microcontrollers
QueueFunctor.hpp
Go to the documentation of this file.
1 
12 #ifndef INCLUDE_DISTORTOS_INTERNAL_SYNCHRONIZATION_QUEUEFUNCTOR_HPP_
13 #define INCLUDE_DISTORTOS_INTERNAL_SYNCHRONIZATION_QUEUEFUNCTOR_HPP_
14 
16 
17 namespace distortos
18 {
19 
20 namespace internal
21 {
22 
31 class QueueFunctor : public estd::TypeErasedFunctor<void(void*)>
32 {
33 
34 };
35 
36 } // namespace internal
37 
38 } // namespace distortos
39 
40 #endif // INCLUDE_DISTORTOS_SYNCHRONIZATION_QUEUEFUNCTOR_HPP_
Definition: TypeErasedFunctor.hpp:19
TypeErasedFunctor template class header.
Top-level namespace of distortos project.
Definition: buttons.hpp:33
QueueFunctor is a type-erased interface for functors which execute some action on queue's storage (li...
Definition: QueueFunctor.hpp:31