The blockchain that provides the digital content namespace for the LBRY protocol
Find a file
MarcoFalke 88411e98e5 Squashed 'src/univalue/' changes from fe805ea74f..07947ff2da
07947ff2da Merge #9: [tests] Fix BOOST_CHECK_THROW macro
ec849d9a28 [tests] Fix BOOST_CHECK_THROW macro
31bc9f5a49 Merge #8: Remove unused Homebrew workaround
fa042093d1 Remove HomeBrew workaround
a523e08ae4 Merge #7: Declare single-argument (non-converting) constructors "explicit"
a9e53b38ba Merge #4: Pull upstream
16a1f7f6e9 Merge #3: Pull upstream
daf1285af6 Merge pull request #2 from jgarzik/master
f32df99e96 Merge branch '2016_04_unicode' into bitcoin
280b191cb1 Merge remote-tracking branch 'jgarzik/master' into bitcoin
2740c4f712 Merge branch '2015_11_escape_plan' into bitcoin

git-subtree-dir: src/univalue
git-subtree-split: 07947ff2da9ef02a9dfa13346bc5545708e3ebe7
2017-12-19 16:44:08 -05:00
build-aux/m4 Squashed 'src/univalue/' changes from 87d9045..5839ac3 2015-10-09 11:36:59 +02:00
gen Squashed 'src/univalue/' changes from 5839ac3..2740c4f 2015-12-02 12:26:24 +01:00
include Squashed 'src/univalue/' changes from 16a1f7f6e..fe805ea74 2017-09-29 14:27:20 +02:00
lib Squashed 'src/univalue/' changes from 16a1f7f6e..fe805ea74 2017-09-29 14:27:20 +02:00
pc Squashed 'src/univalue/' content from commit 87d9045 2015-10-01 10:37:19 +02:00
test Squashed 'src/univalue/' changes from fe805ea74f..07947ff2da 2017-12-19 16:44:08 -05:00
.gitignore Squashed 'src/univalue/' changes from 5839ac3..2740c4f 2015-12-02 12:26:24 +01:00
.travis.yml Squashed 'src/univalue/' changes from fe805ea74f..07947ff2da 2017-12-19 16:44:08 -05:00
autogen.sh Squashed 'src/univalue/' content from commit 87d9045 2015-10-01 10:37:19 +02:00
configure.ac Squashed 'src/univalue/' changes from 16a1f7f6e..fe805ea74 2017-09-29 14:27:20 +02:00
COPYING Squashed 'src/univalue/' content from commit 87d9045 2015-10-01 10:37:19 +02:00
Makefile.am Squashed 'src/univalue/' changes from 16a1f7f6e..fe805ea74 2017-09-29 14:27:20 +02:00
README.md Squashed 'src/univalue/' changes from 16a1f7f6e..fe805ea74 2017-09-29 14:27:20 +02:00
TODO Squashed 'src/univalue/' content from commit 87d9045 2015-10-01 10:37:19 +02:00

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.

Installation

This project is a standard GNU autotools project. Build and install instructions are available in the INSTALL file provided with GNU autotools.

$ ./autogen.sh
$ ./configure
$ make

Design

UniValue provides a single dynamic RAII C++ object class, and minimizes template use (contra json_spirit).