]> git.donarmstrong.com Git - mothur.git/blobdiff - progress.hpp
working on pam
[mothur.git] / progress.hpp
index 82eed70745bc79b7c9fd60b1b6fd5db883e782d4..f4d4fc39eadeb36d44475757b8caf487534e01b9 100644 (file)
@@ -1,19 +1,22 @@
 #ifndef PROGRESS_H
 #define PROGRESS_H
 
-#include <string>
-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