///////////////////////////////////////////////////////////////////////////
| 1056 | |
| 1057 | //////////////////////////////////////////////////////////////////////////////// |
| 1058 | std::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 | //////////////////////////////////////////////////////////////////////////////// |
| 1070 | std::vector<Task> Task::getDependencyTasks() const { |
no outgoing calls
no test coverage detected