| 66 | } |
| 67 | |
| 68 | bool ShouldStop(){ |
| 69 | std::lock_guard<std::mutex> lck (mtxStop); |
| 70 | bool s = stopProcessing; |
| 71 | return s; |
| 72 | } |
| 73 | |
| 74 | void SetError(bool err, std::string message){ |
| 75 | std::lock_guard<std::mutex> lck (mtxerror); |
no outgoing calls
no test coverage detected