]> git.donarmstrong.com Git - mothur.git/blob - progress.hpp
Initial revision
[mothur.git] / progress.hpp
1 #ifndef PROGRESS_H
2 #define PROGRESS_H
3
4 #include <string>
5 using namespace std;
6
7 class Progress {
8         
9 public:
10         Progress(string, int);
11         void update(int);
12         void finish();
13         
14 private:
15         int nTicks;
16         int finalPos;   
17 };
18
19 #endif