#include <BindStorage.hpp>
Public Member Functions | |
template<class F > | |
void | exec (F f) |
template<class F > | |
void | exec (F f) |
bool | isExecuted () const |
bool | isExecuted () const |
operator T & () | |
operator T & () | |
T & | result () |
T & | result () |
RStore () | |
RStore () | |
Public Attributes | |
T | arg |
bool | executed |
Store a return value which may be a void, reference, const reference or any other type. We need these specialisations because the collection of the results will be different if R is non-void or poid (appears as first arg of collect() or not respectively). So RStore is the only instance that knows if a return value was stored or not.
Definition at line 99 of file install/include/rtt/internal/BindStorage.hpp.
RTT::internal::RStore< T >::RStore | ( | ) | [inline] |
Definition at line 102 of file install/include/rtt/internal/BindStorage.hpp.
RTT::internal::RStore< T >::RStore | ( | ) | [inline] |
Definition at line 102 of file rtt/internal/BindStorage.hpp.
Stores the result of a function. The RStore<void> specialisation will not store anything, and just call f().
f | The function object to execute and store the results from |
Definition at line 120 of file rtt/internal/BindStorage.hpp.
Stores the result of a function. The RStore<void> specialisation will not store anything, and just call f().
f | The function object to execute and store the results from |
Definition at line 120 of file install/include/rtt/internal/BindStorage.hpp.
bool RTT::internal::RStore< T >::isExecuted | ( | ) | const [inline] |
Definition at line 104 of file rtt/internal/BindStorage.hpp.
bool RTT::internal::RStore< T >::isExecuted | ( | ) | const [inline] |
Definition at line 104 of file install/include/rtt/internal/BindStorage.hpp.
RTT::internal::RStore< T >::operator T & | ( | ) | [inline] |
Definition at line 111 of file rtt/internal/BindStorage.hpp.
RTT::internal::RStore< T >::operator T & | ( | ) | [inline] |
Definition at line 111 of file install/include/rtt/internal/BindStorage.hpp.
T& RTT::internal::RStore< T >::result | ( | ) | [inline] |
Definition at line 110 of file rtt/internal/BindStorage.hpp.
T& RTT::internal::RStore< T >::result | ( | ) | [inline] |
Definition at line 110 of file install/include/rtt/internal/BindStorage.hpp.
T RTT::internal::RStore< T >::arg |
Definition at line 100 of file install/include/rtt/internal/BindStorage.hpp.
bool RTT::internal::RStore< T >::executed |
Definition at line 101 of file install/include/rtt/internal/BindStorage.hpp.