]> git.donarmstrong.com Git - mothur.git/blobdiff - fileoutput.h
added modify names parameter to set.dir
[mothur.git] / fileoutput.h
index 17bd7a1d7d23dd6a86ae2ea2ec5e5c16e9665171..170ee68a8151e9252788364c13a09de58b192815 100644 (file)
@@ -2,13 +2,14 @@
 #define FILEOUTPUT_H
 
 #include "mothur.h"
+#include "mothurout.h"
 
 /***********************************************************************/
 
 class FileOutput {
        
 public:
-       FileOutput(){};
+       FileOutput(){ m = MothurOut::getInstance(); }
        virtual ~FileOutput(){};
        
        virtual void initFile(string) = 0;
@@ -20,6 +21,7 @@ public:
 
 protected:
        int renameOk;
+       MothurOut* m;
 
 };