| 60 | } |
| 61 | |
| 62 | static double getSecondsSinceLastEmpty(ActionQueue *queue) |
| 63 | { |
| 64 | const auto time = std::chrono::high_resolution_clock::now() - |
| 65 | queue->GetLastEmptyTime(); |
| 66 | return std::chrono::duration_cast<std::chrono::seconds>(time).count(); |
| 67 | } |
| 68 | |
| 69 | static QStringList getCellLabels(ActionQueue *queue, bool addName = true) |
| 70 | { |
no test coverage detected