MCPcopy Create free account
hub / github.com/GothenburgBitFactory/taskwarrior / CmdUnique

Method CmdUnique

src/commands/CmdUnique.cpp:39–52  ·  view source on GitHub ↗

///////////////////////////////////////////////////////////////////////////

Source from the content-addressed store, hash-verified

37
38////////////////////////////////////////////////////////////////////////////////
39CmdUnique::CmdUnique() {
40 _keyword = "_unique";
41 _usage = "task <filter> _unique <attribute>";
42 _description = "Generates lists of unique attribute values";
43 _read_only = true;
44 _displays_id = true;
45 _needs_gc = true;
46 _needs_recur_update = false;
47 _uses_context = false;
48 _accepts_filter = true;
49 _accepts_modifications = false;
50 _accepts_miscellaneous = true;
51 _category = Command::Category::internal;
52}
53
54////////////////////////////////////////////////////////////////////////////////
55int CmdUnique::execute(std::string& output) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected