X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=helpcommand.cpp;h=47d04f9d528ab14053f468f2eacc7e150db736c0;hp=3c799b0903afdc58c20a244356b3ecd8f51cf972;hb=df7e3ff9f68ef157b0328a2d353c3258c5d45d89;hpb=d0954e27635712cdbd8b86e3c4510670803a2665 diff --git a/helpcommand.cpp b/helpcommand.cpp index 3c799b0..47d04f9 100644 --- a/helpcommand.cpp +++ b/helpcommand.cpp @@ -9,54 +9,12 @@ #include "helpcommand.h" -//********************************************************************************************************************** -vector HelpCommand::getValidParameters(){ - try { - - vector myArray; - return myArray; - } - catch(exception& e) { - m->errorOut(e, "HelpCommand", "getValidParameters"); - exit(1); - } -} -//********************************************************************************************************************** -vector HelpCommand::getRequiredParameters(){ - try { - vector myArray; - return myArray; - } - catch(exception& e) { - m->errorOut(e, "HelpCommand", "getRequiredParameters"); - exit(1); - } -} -//********************************************************************************************************************** -vector HelpCommand::getRequiredFiles(){ - try { - vector myArray; - return myArray; - } - catch(exception& e) { - m->errorOut(e, "HelpCommand", "getRequiredFiles"); - exit(1); - } -} //********************************************************************************************************************** -HelpCommand::HelpCommand(string option) { - - validCommands = CommandFactory::getInstance(); - +HelpCommand::HelpCommand(string option) { + validCommands = CommandFactory::getInstance(); } - //********************************************************************************************************************** - -HelpCommand::~HelpCommand(){} - -//********************************************************************************************************************** - int HelpCommand::execute(){ try { validCommands->printCommands(cout); @@ -71,5 +29,4 @@ int HelpCommand::execute(){ exit(1); } } - //**********************************************************************************************************************/