I want to be able to specify multiple name=value lines in the INI file using boost::program_options
. Something like
[list.names]
name=value
name=value2
name=value3
Is there a way to achieve this with boost::program_options
? I get a multiple occurrences error if I try it
If not, what other libraries are available?