diff options
author | Max Reitz | 2017-11-14 19:01:25 +0100 |
---|---|---|
committer | Max Reitz | 2017-11-17 18:21:30 +0100 |
commit | b38dd678a21582e03ecd2dec76ccf8290455628a (patch) | |
tree | 1076a9bc7235d44314418bb7ef140685692e999e /include/qapi/qmp/qnum.h | |
parent | qapi/qlist: Add qlist_append_null() macro (diff) | |
download | qemu-b38dd678a21582e03ecd2dec76ccf8290455628a.tar.gz qemu-b38dd678a21582e03ecd2dec76ccf8290455628a.tar.xz qemu-b38dd678a21582e03ecd2dec76ccf8290455628a.zip |
qapi: Add qobject_is_equal()
This generic function (along with its implementations for different
types) determines whether two QObjects are equal.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Alberto Garcia <berto@igalia.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-id: 20171114180128.17076-4-mreitz@redhat.com
Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'include/qapi/qmp/qnum.h')
-rw-r--r-- | include/qapi/qmp/qnum.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qapi/qmp/qnum.h b/include/qapi/qmp/qnum.h index d6b0791139..c3d86794bb 100644 --- a/include/qapi/qmp/qnum.h +++ b/include/qapi/qmp/qnum.h @@ -69,6 +69,7 @@ double qnum_get_double(QNum *qn); char *qnum_to_string(QNum *qn); QNum *qobject_to_qnum(const QObject *obj); +bool qnum_is_equal(const QObject *x, const QObject *y); void qnum_destroy_obj(QObject *obj); #endif /* QNUM_H */ |