Hi!
I'm reading in an .ini file and the results go in a strict type def.
Now I was wondering, since the labels of the typedef are the same as the sections/keys in the ini file, isn't it possible to automate automate this parsing, so that for every element in the typedef the key gets filled in?
eg the typedef is a cluster containing a cluster named 'section1' which contains a string labeled 'string1', and the ini file cintains
[section1]
string1=value
So I would like to do something like "for every element in typedef, value = read key( element.label, element.parentlabel)"
Any ideas?