Releases: Crucinio/MyJson
Releases · Crucinio/MyJson
1.0.0-alpha
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.