C++ library for reading and writing JSON data
Library for interacting with JSON
jsoncpp$ cat input.json | jsoncpp$ echo '{"name": "test"}' | jsoncpp$ cat > test.cpp << 'EOF'
#include <json/json.h>
int main() {
Json::CharReaderBuilder builder;
Json::Value root;
// Parse JSON
return 0;
}
EOF