forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
# UniValue | ||
|
||
## Summary | ||
|
||
A universal value class, with JSON encoding and decoding. | ||
|
||
UniValue is an abstract data type that may be a null, boolean, string, | ||
number, array container, or a key/value dictionary container, nested to | ||
an arbitrary depth. | ||
|
||
This class is aligned with the JSON standard, [RFC | ||
7159](https://tools.ietf.org/html/rfc7159.html). | ||
|
||
## Installation | ||
|
||
This project is a standard GNU | ||
[autotools](https://www.gnu.org/software/automake/manual/html_node/Autotools-Introduction.html) | ||
project. Build and install instructions are available in the `INSTALL` | ||
file following the `autogen.sh` step. | ||
|
||
```$ ./autogen.sh | ||
$ ./configure | ||
$ make | ||
|
||
## Design | ||
|
||
UniValue provides a single dynamic RAII C++ object class, | ||
and minimizes template use (contra json_spirit). | ||
|