Iterating through objects in JsonCpp
You have some errors related to seemingly not having a great handle on recursion or the key->value nature of JSON and how that relates to the library you’re using. I haven’t tested this code at all, but it should work better. void CDriverConfigurator::PrintJSONValue( const Json::Value &val ) { if( val.isString() ) { printf( “string(%s)”, val.asString().c_str() … Read more