#include <ConditionBool.hpp>
Public Member Functions | |
virtual ConditionBool * | clone () const |
ConditionBool () | |
ConditionBool (bool value) | |
virtual bool | evaluate () |
virtual void | setFalse () |
virtual void | setTrue () |
virtual | ~ConditionBool () |
Public Member Functions inherited from RTT::scripting::ConditionInterface | |
virtual ConditionInterface * | copy (std::map< const base::DataSourceBase *, base::DataSourceBase * > &alreadyCloned) const |
virtual void | reset () |
virtual | ~ConditionInterface () |
Private Attributes | |
bool | state |
Definition at line 52 of file ConditionBool.hpp.
RTT::ConditionBool::ConditionBool | ( | ) |
Construct a new ConditionBool object and set it's value to false.
Definition at line 42 of file ConditionBool.cpp.
RTT::ConditionBool::ConditionBool | ( | bool | value | ) |
Construct a new ConditionBool object with a specified value.
value | The value of the ConditionBool object. |
Definition at line 47 of file ConditionBool.cpp.
|
virtual |
Destroy the ConditionBool object.
Definition at line 52 of file ConditionBool.cpp.
|
virtual |
Return a copy of this Condition...
Implements RTT::scripting::ConditionInterface.
Definition at line 71 of file ConditionBool.cpp.
|
virtual |
Return the boolean value of the ConditionBool object.
Implements RTT::scripting::ConditionInterface.
Definition at line 56 of file ConditionBool.cpp.
|
virtual |
Set the value of the ConditionBool object to false.
Definition at line 66 of file ConditionBool.cpp.
|
virtual |
Set the value of the ConditionBool object to true.
Definition at line 61 of file ConditionBool.cpp.
|
private |
The value of this ConditionBool object.
Definition at line 97 of file ConditionBool.hpp.