2009-11-11 17:37:39 +01: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 18:19:43 +01:00
|
|
|
#include "qapi/qmp/qobject.h"
|
2009-11-11 17:37:39 +01:00
|
|
|
|
|
|
|
typedef struct QBool {
|
2015-10-15 16:15:32 +02:00
|
|
|
QObject base;
|
2015-05-16 00:24:59 +02:00
|
|
|
bool value;
|
2009-11-11 17:37:39 +01:00
|
|
|
} QBool;
|
|
|
|
|
2015-05-16 00:24:59 +02:00
|
|
|
QBool *qbool_from_bool(bool value);
|
|
|
|
bool qbool_get_bool(const QBool *qb);
|
2009-11-11 17:37:39 +01:00
|
|
|
QBool *qobject_to_qbool(const QObject *obj);
|
2015-12-02 06:20:45 +01:00
|
|
|
void qbool_destroy_obj(QObject *obj);
|
2009-11-11 17:37:39 +01:00
|
|
|
|
|
|
|
#endif /* QBOOL_H */
|