MCPcopy Create free account
hub / github.com/daniele77/cli / Help

Method Help

include/cli/cli.h:798–807  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

796 }
797
798 void Help(std::ostream& out) const override
799 {
800 if (!IsEnabled()) return;
801 out << " - " << Name();
802 if (parameterDesc.empty())
803 PrintDesc<Args...>::Dump(out);
804 for (auto& s: parameterDesc)
805 out << " <" << s << '>';
806 out << "\n\t" << description << "\n";
807 }
808
809 private:
810

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected