#include <BindStorage.hpp>

Public Member Functions | |
| template<class F > | |
| void | exec (F f) |
| operator T & () | |
| T & | result () |
| RStore () | |
Public Member Functions inherited from RTT::internal::RStore< void > | |
| void | checkError () const |
| template<class F > | |
| void | exec (F f) |
| bool | isError () const |
| bool | isExecuted () const |
| void | result () |
| RStore () | |
Public Attributes | |
| T | arg |
Public Attributes inherited from RTT::internal::RStore< void > | |
| bool | error |
| 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 140 of file BindStorage.hpp.
|
inline |
Definition at line 142 of file 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 154 of file BindStorage.hpp.
|
inline |
Definition at line 145 of file BindStorage.hpp.
|
inline |
Definition at line 144 of file BindStorage.hpp.
| T RTT::internal::RStore< T >::arg |
Definition at line 141 of file BindStorage.hpp.