#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 () |
Private Attributes | |
bool | state |
Definition at line 52 of file ConditionBool.hpp.
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.
RTT::ConditionBool::~ConditionBool | ( | ) | [virtual] |
Destroy the ConditionBool object.
Definition at line 52 of file ConditionBool.cpp.
ConditionBool * RTT::ConditionBool::clone | ( | ) | const [virtual] |
Return a copy of this Condition...
Implements RTT::scripting::ConditionInterface.
Definition at line 71 of file ConditionBool.cpp.
bool RTT::ConditionBool::evaluate | ( | ) | [virtual] |
Return the boolean value of the ConditionBool object.
Implements RTT::scripting::ConditionInterface.
Definition at line 56 of file ConditionBool.cpp.
void RTT::ConditionBool::setFalse | ( | ) | [virtual] |
Set the value of the ConditionBool object to false.
Definition at line 66 of file ConditionBool.cpp.
void RTT::ConditionBool::setTrue | ( | ) | [virtual] |
Set the value of the ConditionBool object to true.
Definition at line 61 of file ConditionBool.cpp.
bool RTT::scripting::ConditionBool::state [private] |
The value of this ConditionBool object.
Definition at line 97 of file ConditionBool.hpp.