| 94 | } |
| 95 | |
| 96 | bool Flow::hasTask(const QString &taskId) const |
| 97 | { |
| 98 | QMutexLocker locker(&m_flowMutex); |
| 99 | return m_tasks.contains(taskId); |
| 100 | } |
| 101 | |
| 102 | QHash<QString, BaseTask *> Flow::tasks() const |
| 103 | { |
nothing calls this directly
no outgoing calls
no test coverage detected