A message field representable by an enum of a given type. More...
#include <command.hpp>
Public Member Functions | |
void | clear () |
Removes any currently set value for this field. More... | |
EnumField (HebiCommandPtr internal, HebiCommandEnumField field) | |
T | get () const |
If the field has a value, returns that value; otherwise, returns a default. More... | |
bool | has () const |
True if (and only if) the field has a value. More... | |
operator bool () const | |
Allows casting to a bool to check if the field has a value without directly calling has() . More... | |
void | set (T _value) |
Sets the field to a given value. More... | |
Private Attributes | |
HebiCommandEnumField const | field_ |
HebiCommandPtr const | internal_ |
A message field representable by an enum of a given type.
Definition at line 287 of file command.hpp.
|
inline |
Definition at line 291 of file command.hpp.
|
inline |
Removes any currently set value for this field.
Definition at line 315 of file command.hpp.
|
inline |
If the field has a value, returns that value; otherwise, returns a default.
Definition at line 311 of file command.hpp.
|
inline |
True if (and only if) the field has a value.
Definition at line 308 of file command.hpp.
|
inlineexplicit |
Allows casting to a bool to check if the field has a value without directly calling has()
.
This can be used as in the following (assuming 'parent' is a parent message, and this field is called 'myField')
Definition at line 306 of file command.hpp.
|
inline |
Sets the field to a given value.
Definition at line 313 of file command.hpp.
|
private |
Definition at line 319 of file command.hpp.
|
private |
Definition at line 318 of file command.hpp.