I upload an ini file using boost property_tree. My ini file basically contains βsimpleβ types (ie Strings, ints, double, etc.), but I have some values ββthat represent an array.
[Example]
thestring = string
theint = 10
theintarray = 1,2,3,4,5
thestringarray = cat, dog, bird
I am having trouble figuring out how to get an impulse for a software download theintarrayand thestringarrayinto a container object like vectoror list. Am I really doomed to just read it as a string and parse it myself?
Thank!
source
share