| 225 | } |
| 226 | |
| 227 | QString Flow::flowStateAsString(FlowState state) |
| 228 | { |
| 229 | switch (state) { |
| 230 | case FlowState::Success: |
| 231 | return "Success"; |
| 232 | case FlowState::Failed: |
| 233 | return "Failed"; |
| 234 | case FlowState::Cancelled: |
| 235 | return "Cancelled"; |
| 236 | } |
| 237 | return "Unknown"; |
| 238 | } |
| 239 | |
| 240 | QStringList Flow::getTaskIds() const |
| 241 | { |
nothing calls this directly
no outgoing calls
no test coverage detected