Qx v0.5.8
Qt Extensions Library
|
Specifies that a type is generally convertible to/from JSON. More...
Specifies that a type has override conversions for changing to/from JSON.
Satisfied if a Converter specialization exists for T that includes functions with the signatures:
static Qx::JsonError fromJson(T& value, const QJsonValue& jValue)
static R toJson(const T& value)
where R
is any type that satisfies the qjson_type concept.
Satisfied if QX_JSON_MEMBER_OVERRIDE() has been used to add functions to a JSON-tied struct with the signatures:
static Qx::JsonError fromJson(T& member, const QJsonValue& jValue)
static R toJson(const T& member)
where R
is any type that satisfies the qjson_type concept.