2009-11-11 16:37:39 +00:00
|
|
|
/*
|
|
|
|
* QBool Module
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2009
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
|
|
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QBOOL_H
|
|
|
|
#define QBOOL_H
|
|
|
|
|
2012-12-17 17:19:43 +00:00
|
|
|
#include "qapi/qmp/qobject.h"
|
2009-11-11 16:37:39 +00:00
|
|
|
|
2018-02-01 11:18:34 +00:00
|
|
|
struct QBool {
|
2018-04-19 15:01:42 +00:00
|
|
|
struct QObjectBase_ base;
|
2015-05-15 22:24:59 +00:00
|
|
|
bool value;
|
2018-02-01 11:18:34 +00:00
|
|
|
};
|
2009-11-11 16:37:39 +00:00
|
|
|
|
2015-05-15 22:24:59 +00:00
|
|
|
QBool *qbool_from_bool(bool value);
|
|
|
|
bool qbool_get_bool(const QBool *qb);
|
2017-11-14 18:01:25 +00:00
|
|
|
bool qbool_is_equal(const QObject *x, const QObject *y);
|
2015-12-02 05:20:45 +00:00
|
|
|
void qbool_destroy_obj(QObject *obj);
|
2009-11-11 16:37:39 +00:00
|
|
|
|
|
|
|
#endif /* QBOOL_H */
|