diff options
Diffstat (limited to 'src/support/command-line.cpp')
-rw-r--r-- | src/support/command-line.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/support/command-line.cpp b/src/support/command-line.cpp index d9b7170f5..c84474259 100644 --- a/src/support/command-line.cpp +++ b/src/support/command-line.cpp @@ -75,10 +75,16 @@ Options::Options(const std::string& command, const std::string& description) std::cout << "\n\nOptions:\n"; size_t optionWidth = 0; for (const auto& o : options) { + if (o.hidden) { + continue; + } optionWidth = std::max(optionWidth, o.longName.size() + o.shortName.size()); } for (const auto& o : options) { + if (o.hidden) { + continue; + } std::cout << '\n'; bool long_n_short = o.longName.size() != 0 && o.shortName.size() != 0; size_t pad = 1 + optionWidth - o.longName.size() - o.shortName.size(); @@ -106,8 +112,10 @@ Options& Options::add(const std::string& longName, const std::string& shortName, const std::string& description, Arguments arguments, - const Action& action) { - options.push_back({longName, shortName, description, arguments, action, 0}); + const Action& action, + bool hidden) { + options.push_back( + {longName, shortName, description, arguments, action, hidden, 0}); return *this; } |