| 51 | |
| 52 | template<typename ... Args> |
| 53 | QCommandLineOption internalCommandLineOption(Args&& ... args) |
| 54 | { |
| 55 | QCommandLineOption option(std::forward<Args>(args)...); |
| 56 | option.setFlags(QCommandLineOption::HiddenFromHelp); |
| 57 | return option; |
| 58 | } |
| 59 | |
| 60 | void CommandLineParser::init() |
| 61 | { |