2015-08-21 07:04:50 +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
|
|
|
|
|
2017-01-20 13:13:21 +00:00
|
|
|
#include "unicorn/platform.h"
|
2015-08-21 07:04:50 +00:00
|
|
|
#include "qapi/qmp/qobject.h"
|
|
|
|
|
2018-03-07 17:29:30 +00:00
|
|
|
struct QBool {
|
2018-05-04 13:56:43 +00:00
|
|
|
struct QObjectBase_ base;
|
2018-02-13 22:13:24 +00:00
|
|
|
bool value;
|
2018-03-07 17:29:30 +00:00
|
|
|
};
|
2015-08-21 07:04:50 +00:00
|
|
|
|
2018-02-13 22:13:24 +00:00
|
|
|
QBool *qbool_from_bool(bool value);
|
|
|
|
bool qbool_get_bool(const QBool *qb);
|
2018-03-08 13:41:40 +00:00
|
|
|
bool qbool_is_equal(const QObject *x, const QObject *y);
|
2018-02-20 02:34:54 +00:00
|
|
|
void qbool_destroy_obj(QObject *obj);
|
2015-08-21 07:04:50 +00:00
|
|
|
|
|
|
|
#endif /* QBOOL_H */
|