| 17 | { |
| 18 | |
| 19 | LoadingProgress::LoadingProgress( size_t maxIteration, |
| 20 | const std::string& status, float interval ) |
| 21 | : _currentStep(0), _maxProgress(maxIteration), _status(status), _interval(interval) |
| 22 | { |
| 23 | _lastReport = clock::now(); |
| 24 | } |
| 25 | |
| 26 | void LoadingProgress::walk( size_t step ) |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected