Skip to content

1.0.0-alpha

Latest
Compare
Choose a tag to compare
@Crucinio Crucinio released this 25 Jan 15:29
· 2 commits to main since this release
520cab5

1.0.0-alpha

The first version of the tool is capable of:

  • Reading JSON data from files and strings. Supported data types: bool, numeric (long double), string, JSONObject, arrays of listed data (std::list), nested objects.
  • Changing data via set_...(...), read_and_overwrite methods.
  • Writing data into files (write method) or into strings (to_string(tabs)) in JSON format.
  • format method to turn a string into readable json string, e.g. | He said "Hi"| --> |"He said \"Hi\""|.

Note that null data type is not supported.
Reader will read data even if there are missing colons as long as pairing is valid.

To use the tool you only need Json.h and Json.cpp installed.
See more in readme.