#include <DataSourceCondition.hpp>
Public Member Functions | |
virtual DataSourceCondition * | clone () const |
ConditionInterface * | condition () const |
virtual DataSourceCondition * | copy (std::map< const base::DataSourceBase *, base::DataSourceBase * > &alreadyCloned) const |
DataSourceCondition (ConditionInterface *c) | |
DataSourceCondition (const DataSourceCondition &orig) | |
bool | get () const |
void | reset () |
bool const & | rvalue () const |
bool | value () const |
~DataSourceCondition () | |
Public Member Functions inherited from RTT::internal::DataSource< bool > | |
BOOST_STATIC_ASSERT (!details::HasConst< bool >::value) | |
virtual bool | evaluate () const |
void const * | getRawConstPointer () |
virtual std::string | getType () const |
virtual const types::TypeInfo * | getTypeInfo () const |
virtual std::string | getTypeName () const |
Public Member Functions inherited from RTT::base::DataSourceBase | |
virtual DataSourceBase * | copy (std::map< const DataSourceBase *, DataSourceBase * > &alreadyCloned) const =0 |
DataSourceBase () | |
void | deref () const |
virtual shared_ptr | getMember (const std::string &member_name) |
virtual shared_ptr | getMember (DataSourceBase::shared_ptr member_id, DataSourceBase::shared_ptr offset) |
virtual std::vector< std::string > | getMemberNames () const |
virtual shared_ptr | getParent () |
virtual void * | getRawPointer () |
virtual bool | isAssignable () const |
void | ref () const |
std::string | toString () |
virtual bool | update (DataSourceBase *other) |
virtual ActionInterface * | updateAction (DataSourceBase *other) |
virtual void | updated () |
std::ostream & | write (std::ostream &os) |
Private Attributes | |
ConditionInterface * | cond |
bool | result |
Additional Inherited Members | |
Public Types inherited from RTT::internal::DataSource< bool > | |
typedef boost::intrusive_ptr< const DataSource< bool > > | const_ptr |
typedef details::GetConstRef< bool >::type | const_reference_t |
typedef bool | result_t |
typedef boost::intrusive_ptr< DataSource< bool > > | shared_ptr |
typedef bool | value_t |
Public Types inherited from RTT::base::DataSourceBase | |
typedef boost::intrusive_ptr< const DataSourceBase > | const_ptr |
typedef boost::intrusive_ptr< DataSourceBase > | shared_ptr |
Static Public Member Functions inherited from RTT::internal::DataSource< bool > | |
static std::string | GetType () |
static const types::TypeInfo * | GetTypeInfo () |
static std::string | GetTypeName () |
static DataSource< bool > * | narrow (base::DataSourceBase *db) |
Static Public Member Functions inherited from RTT::base::DataSourceBase | |
static const_ptr | stack_const_ptr (const DataSourceBase *dsb) |
static shared_ptr | stack_shared_ptr (DataSourceBase *dsb) |
Protected Member Functions inherited from RTT::internal::DataSource< bool > | |
virtual | ~DataSource () |
Protected Member Functions inherited from RTT::base::DataSourceBase | |
virtual | ~DataSourceBase () |
Protected Attributes inherited from RTT::base::DataSourceBase | |
os::AtomicInt | refcount |
A class that wraps a Condition in a internal::DataSource<bool> interface.
Definition at line 52 of file DataSourceCondition.hpp.
RTT::DataSourceCondition::DataSourceCondition | ( | ConditionInterface * | c | ) |
DataSourceCondition takes ownership of the condition you pass it.
Definition at line 43 of file DataSourceCondition.cpp.
RTT::DataSourceCondition::DataSourceCondition | ( | const DataSourceCondition & | orig | ) |
Definition at line 48 of file DataSourceCondition.cpp.
RTT::DataSourceCondition::~DataSourceCondition | ( | ) |
Definition at line 53 of file DataSourceCondition.cpp.
|
virtual |
Return a shallow clone of this DataSource. This method returns a duplicate of this instance which re-uses the DataSources this internal::DataSource holds reference to. The clone() function is thus a non-deep copy.
Implements RTT::internal::DataSource< bool >.
Definition at line 84 of file DataSourceCondition.cpp.
ConditionInterface * RTT::DataSourceCondition::condition | ( | ) | const |
Definition at line 73 of file DataSourceCondition.cpp.
|
virtual |
Implements RTT::internal::DataSource< bool >.
Definition at line 89 of file DataSourceCondition.cpp.
|
virtual |
Return the data as type T.
Implements RTT::internal::DataSource< bool >.
Definition at line 58 of file DataSourceCondition.cpp.
|
virtual |
Reset the data to initial values.
Reimplemented from RTT::base::DataSourceBase.
Definition at line 78 of file DataSourceCondition.cpp.
|
virtual |
Get a const reference to the value of this DataSource. You must call evaluate() prior to calling this function in order to get the most recent value of this attribute.
Implements RTT::internal::DataSource< bool >.
Definition at line 68 of file DataSourceCondition.cpp.
|
virtual |
Return the result of the last evaluate() function. You must call evaluate() prior to calling this function in order to get the most recent value of this attribute.
Implements RTT::internal::DataSource< bool >.
Definition at line 63 of file DataSourceCondition.cpp.
|
private |
Definition at line 55 of file DataSourceCondition.hpp.
|
mutableprivate |
Definition at line 56 of file DataSourceCondition.hpp.