]> git.donarmstrong.com Git - mothur.git/blob - progress.hpp
added mothur.h and fixed includes in many files
[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(string, int);
12         void update(int);
13         void finish();
14         
15 private:
16         int nTicks;
17         int finalPos;   
18 };
19
20 #endif