MUQ  0.4.3
WaitBar.h
Go to the documentation of this file.
1 #ifndef WAITBAR_H
2 #define WAITBAR_H
3 
4 
5 namespace muq{
6  namespace Utilities{
7 
8 
9  class WaitBar{
10 
11  public:
12  WaitBar(double minValIn, double maxValIn);
13 
14  void Complete();
15 
16  void Update(double newVal);
17 
18  private:
19  double minVal, maxVal;
20 
21  const int barWidth = 60;
22  };
23 
24  } // namespace Utilities
25 }// namespace muq
26 
27 
28 
29 #endif // WAITBAR_H
void Update(double newVal)
Definition: WaitBar.cpp:17
const int barWidth
Definition: WaitBar.h:21
WaitBar(double minValIn, double maxValIn)
Definition: WaitBar.cpp:7