views:

201

answers:

1

Any good examples/tutorials of unpacking JSON strings with the C++ JSON_Spirit library?

Something that can traverse a json_spirit::Value object and pretty-print it would be ideal.

+1  A: 

JSON C++ pretty printer example now at:

http://markharrison.net/stackoverflow/t2-json.cpp

Mark Harrison