X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=progress.hpp;fp=progress.hpp;h=f4d4fc39eadeb36d44475757b8caf487534e01b9;hb=0caf3fbabaa3ece404f8ce77f4c883dc5b1bf1dc;hp=0000000000000000000000000000000000000000;hpb=1b73ff67c83892a025e597dabd9df6fe7b58206a;p=mothur.git diff --git a/progress.hpp b/progress.hpp new file mode 100644 index 0000000..f4d4fc3 --- /dev/null +++ b/progress.hpp @@ -0,0 +1,22 @@ +#ifndef PROGRESS_H +#define PROGRESS_H + +#include "mothur.h" +#include "mothurout.h" + +class Progress { + +public: + Progress(); + Progress(string, int); + void update(int); + void newLine(string, int); + void finish(); + +private: + int nTicks; + int finalPos; + MothurOut* m; +}; + +#endif