I am using the jsoncpp library to parse and create json structures. Is it possible to convert following syntax
jsonText["name1"]["name2"] = "Testmessage";
into something like this
jsonText["name1.name2"] = "Testmessage";
so that
jsonText["name1"]["name2"] = jsonText["name1.name2"];
Regards