]> git.donarmstrong.com Git - mothur.git/blobdiff - systemcommand.h
a few meaningless changes that are commented out
[mothur.git] / systemcommand.h
index 410a12e7657a1c0625281429e261a519dccf45ef..892ac96268baeb2557c51cc67dd0fc571ea4dbfa 100644 (file)
@@ -18,13 +18,22 @@ class SystemCommand : public Command {
        public:
        
                SystemCommand(string);  
-               ~SystemCommand(){};
-               int execute();
-               void help();    
-               
+               SystemCommand() { abort = true; calledHelp = true; }
+               ~SystemCommand(){}
+       
+               vector<string> setParameters() { return outputNames; } //dummy does not do anything
+               string getCommandName()                 { return "system";              }
+               string getCommandCategory()             { return "General";             }
+               string getHelpString(); 
+       
+               int execute(); 
+               void help() { m->mothurOut(getHelpString()); }  
+       
        private:
                string command;
                bool abort;
+               vector<string> outputNames;
+               
                
 };