File: progressbar.h

package info (click to toggle)
wsclean 3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,968 kB
  • sloc: cpp: 85,742; python: 3,526; sh: 245; makefile: 21
file content (24 lines) | stat: -rw-r--r-- 405 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef PROGRESSBAR_H
#define PROGRESSBAR_H

#include <string>

namespace wsclean {

class ProgressBar {
 public:
  explicit ProgressBar(const std::string& taskDescription);
  ~ProgressBar();

  void SetProgress(size_t taskIndex, size_t taskCount);

  ProgressBar& operator=(ProgressBar&& rhs) noexcept;

 private:
  std::string _taskDescription;
  int _displayedDots;
};

}  // namespace wsclean

#endif