X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=progress.hpp;fp=progress.hpp;h=82eed70745bc79b7c9fd60b1b6fd5db883e782d4;hb=20a2d0350a737a434c89f303662d64a8eeea7b05;hp=0000000000000000000000000000000000000000;hpb=bbb5879a7e566935c23d63d42bb945072424b939;p=mothur.git diff --git a/progress.hpp b/progress.hpp new file mode 100644 index 0000000..82eed70 --- /dev/null +++ b/progress.hpp @@ -0,0 +1,19 @@ +#ifndef PROGRESS_H +#define PROGRESS_H + +#include +using namespace std; + +class Progress { + +public: + Progress(string, int); + void update(int); + void finish(); + +private: + int nTicks; + int finalPos; +}; + +#endif