Stellarium  0.16.1
List of all members | Static Public Member Functions
StelJsonParser Class Reference

Qt-based simple JSON reader inspired by the one from Zoolib. More...

#include <StelJsonParser.hpp>

Static Public Member Functions

static QVariant parse (QIODevice *input)
 Parse the given input stream. More...
 
static QVariant parse (const QByteArray &input)
 
static void write (const QVariant &jsonObject, QIODevice *output, int indentLevel=0)
 Serialize the passed QVariant as JSON into the output QIODevice. More...
 
static QByteArray write (const QVariant &jsonObject, int indentLevel=0)
 Serialize the passed QVariant as JSON in a QByteArray. More...
 

Detailed Description

Qt-based simple JSON reader inspired by the one from Zoolib.

The mapping with Qt types is done as following:

JSON            Qt
----          -------
null          QVariant::Invalid
object        QVariantMap (QVariant::Map)
array         QVariantList (QVariant::List)
boolean       QVariant::Bool
string        QVariant::String
number        QVariant::Int or QVariant::Double

JSON is JavaScript Object Notation. See http://www.json.org/

Definition at line 41 of file StelJsonParser.hpp.

Member Function Documentation

static QVariant StelJsonParser::parse ( QIODevice *  input)
static

Parse the given input stream.

static void StelJsonParser::write ( const QVariant &  jsonObject,
QIODevice *  output,
int  indentLevel = 0 
)
static

Serialize the passed QVariant as JSON into the output QIODevice.

static QByteArray StelJsonParser::write ( const QVariant &  jsonObject,
int  indentLevel = 0 
)
static

Serialize the passed QVariant as JSON in a QByteArray.


The documentation for this class was generated from the following file: