///////////////////////////////////////////////////////////////////////////
| 43 | |
| 44 | //////////////////////////////////////////////////////////////////////////////// |
| 45 | CmdModify::CmdModify() { |
| 46 | _keyword = "modify"; |
| 47 | _usage = "task <filter> modify <mods>"; |
| 48 | _description = "Modifies the existing task with provided arguments."; |
| 49 | _read_only = false; |
| 50 | _displays_id = false; |
| 51 | _needs_gc = false; |
| 52 | _needs_recur_update = false; |
| 53 | _uses_context = false; |
| 54 | _accepts_filter = true; |
| 55 | _accepts_modifications = true; |
| 56 | _accepts_miscellaneous = false; |
| 57 | _category = Command::Category::operation; |
| 58 | } |
| 59 | |
| 60 | //////////////////////////////////////////////////////////////////////////////// |
| 61 | int CmdModify::execute(std::string&) { |
nothing calls this directly
no outgoing calls
no test coverage detected