#include <dynamic-graph/command-setter.h>
Public Types | |
typedef void(E::* | SetterMethod) (const T &) |
Pointer to method that sets parameter of type T. | |
Public Member Functions | |
Setter (E &entity, SetterMethod setterMethod, const std::string &docString) | |
Constructor. | |
![]() | |
Command (Entity &entity, const std::vector< Value::Type > &valueTypes, const std::string &docstring) | |
Value | execute () |
Execute the command after checking parameters. | |
std::string | getDocstring () const |
Get documentation string. | |
const std::vector< Value > & | getParameterValues () const |
Get parameter values. | |
Entity & | owner () |
Get a reference to the Entity owning this command. | |
void | setParameterValues (const std::vector< Value > &values) |
Set parameter values. | |
const std::vector< Value::Type > & | valueTypes () const |
Return the value type of all parameters. | |
Protected Member Functions | |
virtual Value | doExecute () |
Specific action performed by the command. | |
Additional Inherited Members | |
![]() | |
static const std::vector< Value::Type > | EMPTY_ARG |
Command that calls a parameter setter function
This class is templated by a type E deriving from entity and a type T of data.
Let us assume that class E has a private member of type T and a public setter function for this member:
Then the command defined by:
sets the value of entity.parameter_
upon invocation.
Definition at line 45 of file command-setter.h.