| 1340 | std::atomic<bool> running; // should the callback be called? |
| 1341 | |
| 1342 | Progress(double nMax) |
| 1343 | : n(0), |
| 1344 | nMax(nMax), |
| 1345 | running(false) {} |
| 1346 | }; |
| 1347 | |
| 1348 | // Progress monitor callback function |
nothing calls this directly
no outgoing calls
no test coverage detected