///////////////////////////////////////////////////////////////////////////
| 41 | |
| 42 | //////////////////////////////////////////////////////////////////////////////// |
| 43 | CmdVersion::CmdVersion() { |
| 44 | _keyword = "version"; |
| 45 | _usage = "task version"; |
| 46 | _description = "Shows the Taskwarrior version number"; |
| 47 | _read_only = true; |
| 48 | _displays_id = false; |
| 49 | _needs_gc = false; |
| 50 | _needs_recur_update = false; |
| 51 | _uses_context = false; |
| 52 | _accepts_filter = false; |
| 53 | _accepts_modifications = false; |
| 54 | _accepts_miscellaneous = false; |
| 55 | _category = Command::Category::misc; |
| 56 | } |
| 57 | |
| 58 | //////////////////////////////////////////////////////////////////////////////// |
| 59 | int CmdVersion::execute(std::string& output) { |
nothing calls this directly
no outgoing calls
no test coverage detected