]> git.donarmstrong.com Git - mothur.git/blobdiff - nocommands.h
removed read.dist, read.otu, read.tree and globaldata. added current to defaults...
[mothur.git] / nocommands.h
index 5b84b65d5a518e77ea754d580e46fe9681db9ae1..12bfc4dffc6082ab35cc405b5ab03b522391b02d 100644 (file)
@@ -18,11 +18,20 @@ class NoCommand : public Command {
 
 public:
        NoCommand(string);
-       ~NoCommand();
-       int execute();
-       void help() {}
+       NoCommand() {}
+       ~NoCommand(){}
+       
+       vector<string> setParameters()  { return outputNames;   } //dummy, doesn't really do anything   
+       string getCommandName()                 { return "NoCommand";   }
+       string getCommandCategory()             { return "Hidden";              }
+       string getHelpString() { return "No Command"; } 
+       
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
+       
        
 private:
+       vector<string> outputNames;
                
 };