I am using the boost::program_options library and the code below is used to create a description of the options and add options to it:
po::options_description opts("SendFile Options");
opts.add_options()("help,h", "Print this help message")
("other,o","This is the other");
My question is, which C++ language feature allows you to add the separate descriptions directly after calling the add_options function in the form of repeating values contained in parentheses? What is this called, and how would I create a function that works in this manner?