]> git.donarmstrong.com Git - mothur.git/blobdiff - command.hpp
added set.current and get.current commands and modified existing commands to update...
[mothur.git] / command.hpp
index f65f6cc0fb14ab1d892dbcc5df567c086ca183c9..93669ba7babe40f9b5889e953bf943d362cd7bbe 100644 (file)
 #include "validparameter.h"
 #include "mothurout.h"
 
+
 class Command {
        
        public:
-               Command() {  m = MothurOut::getInstance();   }
+               Command() {  m = MothurOut::getInstance();   } 
                virtual vector<string> getValidParameters() = 0;
                virtual vector<string> getRequiredParameters() = 0; //adding "or" as the last element indicates one of the previous is needed
                virtual vector<string> getRequiredFiles() = 0; //adding "or" as the last element indicates one of the previous is needed
@@ -31,7 +32,6 @@ class Command {
                virtual ~Command() { }
        protected:
                MothurOut* m;
-               
                bool calledHelp;
        
                map<string, vector<string> >::iterator itTypes;