|
From: J (Jean-C. Gervais) <pro...@gm...> - 2015-05-15 17:46:58
|
Hi!
Newbie question:
I have a Json::Value which contains an object like
"SOMEOBJECT":{
"OTHEROBJECT": {
"VAL1": "string value a",
"VAL2": 25,
"VAL3": 10,
"VAL4": "string value w",
"VAL5": 1,
"VAL6": "string value x"
}
}
Given the Json::Value, I know how to obtain the names of its internal
objects: getMemberNames
But how can I obtain the name of the object itself (SOMEOBJECT) ?
Thanks
|