| 25 | int triggers = 0; |
| 26 | |
| 27 | bool wait() |
| 28 | { |
| 29 | std::unique_lock<std::mutex> lk(mutex); |
| 30 | return cv.wait_for(lk, 1min) == std::cv_status::no_timeout; |
| 31 | } |
| 32 | |
| 33 | bool waitFor(int numberOfTriggers) |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected