| 33 | public: |
| 34 | |
| 35 | ProcessingController(){ |
| 36 | processingProgress = 0; |
| 37 | stopProcessing = false; |
| 38 | processingFinished = false; |
| 39 | } |
| 40 | |
| 41 | int GetFinished(){ |
| 42 | std::lock_guard<std::mutex> lck (mtxFinished); |
nothing calls this directly
no outgoing calls
no test coverage detected