|
Bifrost SDK
Bifrost SDK documentation
|
An interface for the watchpoints to manage recorded values. More...
#include <Watchpoint.h>
Public Types | |
| using | String = Watchpoint::String |
| using | StringArray = Watchpoint::StringArray |
Public Member Functions | |
| Records (const Amino::WatchPoint &watchpoint) noexcept | |
| virtual | ~Records () noexcept |
| bool | getSetting (const String ¶meter, String &value) const noexcept |
| Query the value currently assigned to a given parameter. see Watchpoint::getParameterDetails. More... | |
| virtual void | clear () noexcept=0 |
| Remove all stored values. More... | |
| virtual void | erase (const String ¶meter) noexcept=0 |
| Remove stored values for the given parameter. More... | |
| virtual void | set (const String ¶meter, const String &value) noexcept=0 |
| Set (replace) recorded value for given parameter. More... | |
| virtual void | set (const String ¶meter, const StringArray &values) noexcept=0 |
| Set (replace) recorded values for given parameter. More... | |
| virtual void | add (const String ¶meter, const String &value) noexcept=0 |
| Add (append) recorded value for given parameter. More... | |
| virtual void | add (const String ¶meter, const StringArray &values) noexcept=0 |
| Add (append) recorded values for given parameter. More... | |
An interface for the watchpoints to manage recorded values.
Definition at line 290 of file Watchpoint.h.
Definition at line 292 of file Watchpoint.h.
Definition at line 293 of file Watchpoint.h.
|
explicitnoexcept |
|
virtualnoexcept |
|
pure virtualnoexcept |
Add (append) recorded value for given parameter.
| [in] | parameter | The parameter. |
| [in] | value | The value. |
|
pure virtualnoexcept |
Add (append) recorded values for given parameter.
| [in] | parameter | The parameter. |
| [in] | values | The values. |
|
pure virtualnoexcept |
Remove all stored values.
|
pure virtualnoexcept |
Remove stored values for the given parameter.
| [in] | parameter | The parameter. |
|
noexcept |
Query the value currently assigned to a given parameter. see Watchpoint::getParameterDetails.
| [in] | parameter | The parameter. |
| [out] | value | The parameter's value. |
|
pure virtualnoexcept |
Set (replace) recorded value for given parameter.
| [in] | parameter | The parameter. |
| [in] | value | The value. |
|
pure virtualnoexcept |
Set (replace) recorded values for given parameter.
| [in] | parameter | The parameter. |
| [in] | values | The values. |