X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=progress.hpp;h=f4d4fc39eadeb36d44475757b8caf487534e01b9;hp=82eed70745bc79b7c9fd60b1b6fd5db883e782d4;hb=050a3ff02473a3d4c0980964e1a9ebe52e55d6b8;hpb=20a2d0350a737a434c89f303662d64a8eeea7b05 diff --git a/progress.hpp b/progress.hpp index 82eed70..f4d4fc3 100644 --- a/progress.hpp +++ b/progress.hpp @@ -1,19 +1,22 @@ #ifndef PROGRESS_H #define PROGRESS_H -#include -using namespace std; +#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; + int finalPos; + MothurOut* m; }; #endif