X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=progress.hpp;h=f4d4fc39eadeb36d44475757b8caf487534e01b9;hb=bd27c2b0612942815b7417c79f7ee41f669a2a34;hp=ae0303cbfeeef2d49c6b6ce5af63d4e5b20f7d70;hpb=bfbc55964f1977da72c2cea984288a427d370a59;p=mothur.git diff --git a/progress.hpp b/progress.hpp index ae0303c..f4d4fc3 100644 --- a/progress.hpp +++ b/progress.hpp @@ -2,19 +2,21 @@ #define PROGRESS_H #include "mothur.h" - -using namespace std; +#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