diff options
author | Alexander Bantyev <balsoft@balsoft.ru> | 2023-03-09 18:11:01 +0400 |
---|---|---|
committer | Alexander Bantyev <balsoft@balsoft.ru> | 2023-03-22 09:45:08 +0400 |
commit | 85df7e7ea24b9f7badbcec06a54e144a0cf1baf5 (patch) | |
tree | 0b89e66f84cae891aa047cdb8c4db40a13fd5b65 /src/libutil | |
parent | 4dcc0a1b766be6242ad5b478b88fd59d5081446f (diff) |
Logger, ProgressBar: add a way to pause/resume
Add new virtual methods pause and resume to the Logger class, and
implement them in ProgressBar to allow to pause the bar refreshing.
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/logging.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh index 59a707eef..1a37aea9e 100644 --- a/src/libutil/logging.hh +++ b/src/libutil/logging.hh @@ -72,6 +72,9 @@ public: virtual void stop() { }; + virtual void pause() { }; + virtual void resume() { }; + // Whether the logger prints the whole build log virtual bool isVerbose() { return false; } |