/**************************************************************************** ** ** Copyright (c) 2010 Girish Ramakrishnan ** ** Use, modification and distribution is allowed without limitation, ** warranty, liability or support of any kind. ** ****************************************************************************/ #ifndef JSON_H #define JSON_H #include #include namespace Json { QVariant parse(const QByteArray &data, QString *error = 0); QByteArray stringify(const QVariant &variant); QByteArray prettyStringify(const QVariant &variant, int indent, int indent0 = 0); }; #endif // JSON_H