]> git.proxmox.com Git - qemu.git/blame - qjson.h
vnc: rename vnc-encoding-* vnc-enc-*
[qemu.git] / qjson.h
CommitLineData
b4748b9b
AL
1/*
2 * QObject JSON integration
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 QJSON_H
15#define QJSON_H
16
8ff5a7d3 17#include <stdarg.h>
b4748b9b 18#include "qobject.h"
1fd825f7 19#include "qstring.h"
b4748b9b
AL
20
21QObject *qobject_from_json(const char *string);
22QObject *qobject_from_jsonf(const char *string, ...)
23 __attribute__((__format__ (__printf__, 1, 2)));
8ff5a7d3 24QObject *qobject_from_jsonv(const char *string, va_list *ap);
b4748b9b 25
1fd825f7
AL
26QString *qobject_to_json(const QObject *obj);
27
b4748b9b 28#endif /* QJSON_H */