| 55 | } |
| 56 | |
| 57 | void IOThread::onLUTChanged(const pathology::LUT& LUT) { |
| 58 | _jobListMutex.lock(); |
| 59 | for (unsigned int i = 0; i < _workers.size(); ++i) { |
| 60 | _workers[i]->setLUT(LUT); |
| 61 | } |
| 62 | _jobListMutex.unlock(); |
| 63 | } |
| 64 | |
| 65 | std::vector<IOWorker*> IOThread::getWorkers() { |
| 66 | return _workers; |
no test coverage detected