Class Handle

Inheritance Relationships

Derived Types

Class Documentation

class Handle

A handle used to get and set a value on a given interface.

Subclassed by hardware_interface::CommandInterface, hardware_interface::StateInterface

Public Functions

inline Handle(const std::string &prefix_name, const std::string &interface_name, double *value_ptr = nullptr)
inline explicit Handle(const InterfaceDescription &interface_description)
inline explicit Handle(const std::string &interface_name)
inline explicit Handle(const char *interface_name)
Handle(const Handle &other) = default
Handle(Handle &&other) = default
Handle &operator=(const Handle &other) = default
Handle &operator=(Handle &&other) = default
virtual ~Handle() = default
inline operator bool() const

Returns true if handle references a value.

inline const std::string &get_name() const
inline const std::string &get_interface_name() const
inline const std::string &get_full_name() const
inline const std::string &get_prefix_name() const
inline double get_value() const
inline void set_value(double value)

Protected Attributes

std::string prefix_name_
std::string interface_name_
std::string handle_name_
HANDLE_DATATYPE value_
double *value_ptr_