| 24 | } |
| 25 | |
| 26 | unsigned int ProgressMonitor::operator++() { |
| 27 | setProgress(_progress + 1); |
| 28 | return _progress; |
| 29 | } |
| 30 | unsigned int ProgressMonitor::operator += (unsigned int increment) { |
| 31 | setProgress(_progress + increment); |
| 32 | return _progress; |
nothing calls this directly
no outgoing calls
no test coverage detected