#include <ConditionBool.hpp>

Public Member Functions | |
| virtual ConditionBool * | clone () const |
| virtual ConditionBool * | clone () const |
| ConditionBool (bool value) | |
| ConditionBool () | |
| ConditionBool (bool value) | |
| ConditionBool () | |
| virtual bool | evaluate () |
| virtual bool | evaluate () |
| virtual void | setFalse () |
| virtual void | setFalse () |
| virtual void | setTrue () |
| virtual void | setTrue () |
| virtual | ~ConditionBool () |
| virtual | ~ConditionBool () |
Private Attributes | |
| bool | state |
Definition at line 52 of file install/include/rtt/scripting/ConditionBool.hpp.
| RTT::ConditionBool::ConditionBool | ( | ) |
Construct a new ConditionBool object and set it's value to false.
Definition at line 41 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 46 of file ConditionBool.cpp.
| RTT::ConditionBool::~ConditionBool | ( | ) | [virtual] |
Destroy the ConditionBool object.
Definition at line 51 of file ConditionBool.cpp.
| RTT::scripting::ConditionBool::ConditionBool | ( | ) |
Construct a new ConditionBool object and set it's value to false.
| RTT::scripting::ConditionBool::ConditionBool | ( | bool | value | ) |
Construct a new ConditionBool object with a specified value.
| value | The value of the ConditionBool object. |
| virtual RTT::scripting::ConditionBool::~ConditionBool | ( | ) | [virtual] |
Destroy the ConditionBool object.
| virtual ConditionBool* RTT::scripting::ConditionBool::clone | ( | ) | const [virtual] |
Return a copy of this Condition...
Implements RTT::scripting::ConditionInterface.
| ConditionBool * RTT::ConditionBool::clone | ( | ) | const [virtual] |
Return a copy of this Condition...
Implements RTT::scripting::ConditionInterface.
Definition at line 70 of file ConditionBool.cpp.
| virtual bool RTT::scripting::ConditionBool::evaluate | ( | ) | [virtual] |
Return the boolean value of the ConditionBool object.
Implements RTT::scripting::ConditionInterface.
| bool RTT::ConditionBool::evaluate | ( | ) | [virtual] |
Return the boolean value of the ConditionBool object.
Implements RTT::scripting::ConditionInterface.
Definition at line 55 of file ConditionBool.cpp.
| virtual void RTT::scripting::ConditionBool::setFalse | ( | ) | [virtual] |
Set the value of the ConditionBool object to false.
| void RTT::ConditionBool::setFalse | ( | ) | [virtual] |
Set the value of the ConditionBool object to false.
Definition at line 65 of file ConditionBool.cpp.
| virtual void RTT::scripting::ConditionBool::setTrue | ( | ) | [virtual] |
Set the value of the ConditionBool object to true.
| void RTT::ConditionBool::setTrue | ( | ) | [virtual] |
Set the value of the ConditionBool object to true.
Definition at line 60 of file ConditionBool.cpp.
bool RTT::scripting::ConditionBool::state [private] |
The value of this ConditionBool object.
Definition at line 97 of file install/include/rtt/scripting/ConditionBool.hpp.