]> git.donarmstrong.com Git - mothur.git/blobdiff - command.hpp
created mothurOut class to handle logfiles
[mothur.git] / command.hpp
index 1dd5e871aaa66362e02e997c9ff26b427ed9178a..b6bf5cd397644ad215a8a88f269f461d04add112 100644 (file)
 #include "mothur.h"
 #include "optionparser.h"
 #include "validparameter.h"
+#include "mothurout.h"
 
 class Command {
        
        public:
+               Command() {  m = MothurOut::getInstance();  }
                virtual int execute() = 0;
                virtual void help() = 0;
                virtual ~Command() { }
+       protected:
+               MothurOut* m;
 };
 
 #endif