]> git.donarmstrong.com Git - mothur.git/blobdiff - progress.hpp
Revert to previous commit
[mothur.git] / progress.hpp
diff --git a/progress.hpp b/progress.hpp
new file mode 100644 (file)
index 0000000..f4d4fc3
--- /dev/null
@@ -0,0 +1,22 @@
+#ifndef PROGRESS_H
+#define PROGRESS_H
+
+#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;
+       MothurOut* m;   
+};
+
+#endif