]> git.donarmstrong.com Git - mothur.git/blobdiff - helpcommand.cpp
fixed cluster.split bug
[mothur.git] / helpcommand.cpp
index 040327638318b271b72276671adb17ad1cc4a75e..24d587b60ab7115b06379a98e9076ad3c6999c0f 100644 (file)
@@ -9,11 +9,46 @@
 
 #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)  {
        
        validCommands = CommandFactory::getInstance();
+       
 }
 
 //**********************************************************************************************************************