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