]> git.donarmstrong.com Git - mothur.git/blobdiff - progress.hpp
working on pam
[mothur.git] / progress.hpp
index ae0303cbfeeef2d49c6b6ce5af63d4e5b20f7d70..f4d4fc39eadeb36d44475757b8caf487534e01b9 100644 (file)
@@ -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