///////////////////////////////////////////////////////////////////////////
| 38 | |
| 39 | //////////////////////////////////////////////////////////////////////////////// |
| 40 | CmdHelp::CmdHelp() { |
| 41 | _keyword = "help"; |
| 42 | _usage = "task help ['usage']"; |
| 43 | _description = "Displays this usage help text"; |
| 44 | _read_only = true; |
| 45 | _displays_id = false; |
| 46 | _needs_gc = false; |
| 47 | _needs_recur_update = false; |
| 48 | _uses_context = false; |
| 49 | _accepts_filter = false; |
| 50 | _accepts_modifications = false; |
| 51 | _accepts_miscellaneous = true; |
| 52 | _category = Command::Category::misc; |
| 53 | } |
| 54 | |
| 55 | //////////////////////////////////////////////////////////////////////////////// |
| 56 | int CmdHelp::execute(std::string& output) { |
nothing calls this directly
no outgoing calls
no test coverage detected