HEBI C++ API
3.10.0
|
A message field representable by an unsigned 64 bit integer value. More...
#include <command.hpp>
Public Member Functions | |
operator bool () const | |
Allows casting to a bool to check if the field has a value without directly calling has() . More... | |
bool | has () const |
True if (and only if) the field has a value. More... | |
IpAddress | get () const |
If the field has a value, returns that value; otherwise, returns 0.0.0.0. More... | |
void | set (const IpAddress &value) |
Sets the field to a given value. More... | |
void | clear () |
Removes any currently set value for this field. More... | |
A message field representable by an unsigned 64 bit integer value.
|
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')
bool hebi::Command::IpAddressField::has | ( | ) | const |
True if (and only if) the field has a value.
IpAddress hebi::Command::IpAddressField::get | ( | ) | const |
If the field has a value, returns that value; otherwise, returns 0.0.0.0.
void hebi::Command::IpAddressField::set | ( | const IpAddress & | value | ) |
Sets the field to a given value.
void hebi::Command::IpAddressField::clear | ( | ) |
Removes any currently set value for this field.