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