2009-11-11 19:37:39 +03: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 21:19:43 +04:00
|
|
|
#include "qapi/qmp/qobject.h"
|
2009-11-11 19:37:39 +03:00
|
|
|
|
2018-02-01 14:18:34 +03:00
|
|
|
struct QBool {
|
2018-04-19 18:01:42 +03:00
|
|
|
struct QObjectBase_ base;
|
2015-05-16 01:24:59 +03:00
|
|
|
bool value;
|
2018-02-01 14:18:34 +03:00
|
|
|
};
|
2009-11-11 19:37:39 +03:00
|
|
|
|
2015-05-16 01:24:59 +03:00
|
|
|
QBool *qbool_from_bool(bool value);
|
|
|
|
bool qbool_get_bool(const QBool *qb);
|
2017-11-14 21:01:25 +03:00
|
|
|
bool qbool_is_equal(const QObject *x, const QObject *y);
|
2015-12-02 08:20:45 +03:00
|
|
|
void qbool_destroy_obj(QObject *obj);
|
2009-11-11 19:37:39 +03:00
|
|
|
|
|
|
|
#endif /* QBOOL_H */
|