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
?
Short argument in boost::program_options without long
564 views Asked by SU3 At
1
No, the library does not support this.