xref: /qemu/include/qapi/qmp/qbool.h (revision 7a4e543d)
1 /*
2  * QBool Module
3  *
4  * Copyright IBM, Corp. 2009
5  *
6  * Authors:
7  *  Anthony Liguori   <aliguori@us.ibm.com>
8  *
9  * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10  * See the COPYING.LIB file in the top-level directory.
11  *
12  */
13 
14 #ifndef QBOOL_H
15 #define QBOOL_H
16 
17 #include <stdbool.h>
18 #include "qapi/qmp/qobject.h"
19 
20 typedef struct QBool {
21     QObject base;
22     bool value;
23 } QBool;
24 
25 QBool *qbool_from_bool(bool value);
26 bool qbool_get_bool(const QBool *qb);
27 QBool *qobject_to_qbool(const QObject *obj);
28 void qbool_destroy_obj(QObject *obj);
29 
30 #endif /* QBOOL_H */
31