Short argument in boost::program_options without long

582 Views Asked by At

Is it possible to specify an argument with boost::program_options with short option only? The answer given here is to use allow_long_disguise, which will result in long options being acceptable with a single dash. Is there any way to make some options short-only (single dash and single character), without using allow_long_disguise?

1

There are 1 best solutions below

0
On

No, the library does not support this.