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

Method Help

include/cli/cli.h:846–855  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

844 return false;
845 }
846 void Help(std::ostream& out) const override
847 {
848 if (!IsEnabled()) return;
849 out << " - " << Name();
850 if (parameterDesc.empty())
851 PrintDesc<std::vector<std::string>>::Dump(out);
852 for (auto& s: parameterDesc)
853 out << " <" << s << '>';
854 out << "\n\t" << description << "\n";
855 }
856
857 private:
858

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected