lib/dbus/ReadIter: add method GetBool()
This commit is contained in:
parent
474b6610fa
commit
481c1b6f2e
|
@ -41,6 +41,12 @@ public:
|
||||||
dbus_message_iter_get_basic(&iter, value);
|
dbus_message_iter_get_basic(&iter, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool GetBool() noexcept {
|
||||||
|
dbus_bool_t value;
|
||||||
|
GetBasic(&value);
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
const char *GetString() noexcept {
|
const char *GetString() noexcept {
|
||||||
const char *value;
|
const char *value;
|
||||||
GetBasic(&value);
|
GetBasic(&value);
|
||||||
|
|
Loading…
Reference in New Issue