How can I iterate through JSON array using jsoncpp? As an example:
{"val1":[
    {"val2":"_val2"},
    {"val3":"_val3"},
    {"val4":"_val4"}
        ]
 }
How to get _val2,_val3,_val4 in loop using this library?
How can I iterate through JSON array using jsoncpp? As an example:
{"val1":[
    {"val2":"_val2"},
    {"val3":"_val3"},
    {"val4":"_val4"}
        ]
 }
How to get _val2,_val3,_val4 in loop using this library?