| 55 | } |
| 56 | |
| 57 | int GetProgress(){ |
| 58 | std::lock_guard<std::mutex> lck (mtxProgress); |
| 59 | uint p = processingProgress; |
| 60 | return p; |
| 61 | } |
| 62 | |
| 63 | void CancelProcessing(){ |
| 64 | std::lock_guard<std::mutex> lck (mtxStop); |
nothing calls this directly
no outgoing calls
no test coverage detected