I'm having an struggle with a de-serializing operation, look I have a QString like this:
[{"value": "", "type": "tag", "name": "Output Tag", "param": "outputtag"}, {"value": "black", "type": "colour", "name": "Init Colour", "param": "initcolour"}, {"value": "", "type": "colour", "name": "Off Colour", "param": "offcolour"}, {"value": "", "type": "colour", "name": "On Colour", "param": "oncolour"}]
Ok, Now I want to make a QList of QMap s out of the string above. that simple but confusing, do I have to parse my string by hand? or is there any code or tool that can do it for me with no charge? :))