Skip to content
/ QtJson Public

Alternative module for working with Json in Qt.

Notifications You must be signed in to change notification settings

Neomer/QtJson

Repository files navigation

QtJson

Alternative module for working with Json in Qt.

Tool helps you to create a Json object and simply use it in your own way.

Sample of usage:

d->root()["qwqw"]["3443"] = 34;
d->root()["334"] = true;
d->root()["array"] = 4;
d->root()["array"] += 5;
d->root()["array"] += 6;
d->root()["array"] += "4556";

JSON representation:

{ "qwqw": { "3443": 34 }, "334": true, "array": [4,5,6,"4556"] }

About

Alternative module for working with Json in Qt.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published