Is there a way to have multiple "name=value" lines in the INI file using boost::program_options::par
Posted
by MeThinks
on Stack Overflow
See other posts from Stack Overflow
or by MeThinks
Published on 2010-06-17T12:19:44Z
Indexed on
2010/06/17
12:23 UTC
Read the original article
Hit count: 161
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?
© Stack Overflow or respective owner