///////////////////////////////////////////////////////////////////////////
| 189 | |
| 190 | //////////////////////////////////////////////////////////////////////////////// |
| 191 | CmdUUIDs::CmdUUIDs() { |
| 192 | _keyword = "uuids"; |
| 193 | _usage = "task <filter> uuids"; |
| 194 | _description = "Shows the UUIDs of matching tasks, as a space-separated list"; |
| 195 | _read_only = true; |
| 196 | _displays_id = false; |
| 197 | _needs_gc = true; |
| 198 | _needs_recur_update = true; |
| 199 | _uses_context = false; |
| 200 | _accepts_filter = true; |
| 201 | _accepts_modifications = false; |
| 202 | _accepts_miscellaneous = false; |
| 203 | _category = Command::Category::metadata; |
| 204 | } |
| 205 | |
| 206 | //////////////////////////////////////////////////////////////////////////////// |
| 207 | int CmdUUIDs::execute(std::string& output) { |
nothing calls this directly
no outgoing calls
no test coverage detected