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