X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=progress.hpp;h=f4d4fc39eadeb36d44475757b8caf487534e01b9;hp=ae0303cbfeeef2d49c6b6ce5af63d4e5b20f7d70;hb=cf9987b67aa49777a4c91c2d21f96e58bf17aa82;hpb=bfbc55964f1977da72c2cea984288a427d370a59 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