if I specify
ip_addresses=monkeys
ip_addresses=baboons
parse_config_file creates multiple strings resulting in a std::vector< std::string>
as output.
I want to list multiple strings on a single line.
ip_addresses=monkeys, baboons
The result is a single string in the std::vector< <std::string> >
. If it is possible, how does one express the seperator ?
The documentation does not specify if string seperation is allowed in the ini-files. However, multi-valued settings can be seperated when supplied as command line switches.