| 222 | } |
| 223 | |
| 224 | void ProgressLogger::startProgress(SignedSize begin, SignedSize end, const String& label) const |
| 225 | { |
| 226 | OPENMS_PRECONDITION(begin <= end, "ProgressLogger::init : invalid range!"); |
| 227 | last_invoke_ = time(nullptr); |
| 228 | current_logger_->startProgress(begin, end, label, recursion_depth_); |
| 229 | ++recursion_depth_; |
| 230 | } |
| 231 | |
| 232 | void ProgressLogger::setProgress(SignedSize value) const |
| 233 | { |
no outgoing calls