]> git.donarmstrong.com Git - mothur.git/blobdiff - helpcommand.cpp
added pipeline commands which involved change to command factory and command class...
[mothur.git] / helpcommand.cpp
index 36ce2b760e266a790bba56e9b4d5adf5f5b493a5..24d587b60ab7115b06379a98e9076ad3c6999c0f 100644 (file)
@@ -9,6 +9,40 @@
 
 #include "helpcommand.h"
 
+//**********************************************************************************************************************
+vector<string> HelpCommand::getValidParameters(){      
+       try {
+               
+               vector<string> myArray; 
+               return myArray;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "HelpCommand", "getValidParameters");
+               exit(1);
+       }
+}
+//**********************************************************************************************************************
+vector<string> HelpCommand::getRequiredParameters(){   
+       try {
+               vector<string> myArray;
+               return myArray;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "HelpCommand", "getRequiredParameters");
+               exit(1);
+       }
+}
+//**********************************************************************************************************************
+vector<string> HelpCommand::getRequiredFiles(){        
+       try {
+               vector<string> myArray;
+               return myArray;
+       }
+       catch(exception& e) {
+               m->errorOut(e, "HelpCommand", "getRequiredFiles");
+               exit(1);
+       }
+}
 //**********************************************************************************************************************
 
 HelpCommand::HelpCommand(string option)  {