| 28 | return _progress; |
| 29 | } |
| 30 | unsigned int ProgressMonitor::operator += (unsigned int increment) { |
| 31 | setProgress(_progress + increment); |
| 32 | return _progress; |
| 33 | } |
| 34 | |
| 35 | std::string ProgressMonitor::status() const { |
| 36 | return _status; |
nothing calls this directly
no outgoing calls
no test coverage detected