version 1.1.1.1, 2018/04/24 17:33:54
|
version 1.1.1.2, 2018/04/24 18:33:26
|
Line 18
|
Line 18
|
#include "qobject.h" |
#include "qobject.h" |
#include "qstring.h" |
#include "qstring.h" |
|
|
QObject *qobject_from_json(const char *string); |
QObject *qobject_from_json(const char *string) GCC_FMT_ATTR(1, 0); |
QObject *qobject_from_jsonf(const char *string, ...) |
QObject *qobject_from_jsonf(const char *string, ...) GCC_FMT_ATTR(1, 2); |
__attribute__((__format__ (__printf__, 1, 2))); |
QObject *qobject_from_jsonv(const char *string, va_list *ap) GCC_FMT_ATTR(1, 0); |
QObject *qobject_from_jsonv(const char *string, va_list *ap); |
|
|
|
QString *qobject_to_json(const QObject *obj); |
QString *qobject_to_json(const QObject *obj); |
|
QString *qobject_to_json_pretty(const QObject *obj); |
|
|
#endif /* QJSON_H */ |
#endif /* QJSON_H */ |