qjson.h 655 字节
Newer Older
A
Anthony Liguori 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * QObject JSON integration
 *
 * 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 QJSON_H
#define QJSON_H

17
#include <stdarg.h>
A
Anthony Liguori 已提交
18
#include "qobject.h"
19
#include "qstring.h"
A
Anthony Liguori 已提交
20

S
Stefan Weil 已提交
21
QObject *qobject_from_json(const char *string) GCC_FMT_ATTR(1, 0);
22
QObject *qobject_from_jsonf(const char *string, ...) GCC_FMT_ATTR(1, 2);
S
Stefan Weil 已提交
23
QObject *qobject_from_jsonv(const char *string, va_list *ap) GCC_FMT_ATTR(1, 0);
A
Anthony Liguori 已提交
24

25 26
QString *qobject_to_json(const QObject *obj);

A
Anthony Liguori 已提交
27
#endif /* QJSON_H */