| 22 | } |
| 23 | |
| 24 | void ProgressBar::startProgress(uint64_t queryID) { |
| 25 | if (!trackProgress) { |
| 26 | return; |
| 27 | } |
| 28 | std::lock_guard<std::mutex> lock(progressBarLock); |
| 29 | updateDisplay(queryID, 0.0); |
| 30 | } |
| 31 | |
| 32 | void ProgressBar::endProgress(uint64_t queryID) { |
| 33 | std::lock_guard<std::mutex> lock(progressBarLock); |
no outgoing calls
no test coverage detected