Shutdown the thread
| 180 | |
| 181 | // Shutdown the thread |
| 182 | void Cameras::StopCaptureThread() |
| 183 | { |
| 184 | if (captureThread) |
| 185 | { |
| 186 | captureThread->SetCapture(STOP); |
| 187 | captureThread->Wait(); |
| 188 | captureThread = NULL; |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | bool Cameras::GetInitialData() |
| 193 | { |
nothing calls this directly
no test coverage detected