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

Method getDependencyUUIDs

src/Task.cpp:1058–1067  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1056
1057////////////////////////////////////////////////////////////////////////////////
1058std::vector<std::string> Task::getDependencyUUIDs() const {
1059 std::vector<std::string> uuids;
1060 for (auto& attr : all()) {
1061 if (!isDepAttr(attr)) continue;
1062 auto dep = attr2Dep(attr);
1063 uuids.push_back(dep);
1064 }
1065
1066 return uuids;
1067}
1068
1069////////////////////////////////////////////////////////////////////////////////
1070std::vector<Task> Task::getDependencyTasks() const {

Callers 6

sort_compareFunction · 0.80
dependency_scanFunction · 0.80
dependencyIsCircularFunction · 0.80
formatTaskMethod · 0.80
parseTaskMethod · 0.80
executeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected