X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=systemcommand.cpp;h=fb250d7fe96cb4ed38df8c0ce33d1c7e17911945;hb=995238e9aa4455e3b59053e3dfe497b89caed79e;hp=708724a4e5cd46643e7ec29464b61c1f34c7cd41;hpb=74844a60d80c6dd06e3fb02ee9b928424f9019b0;p=mothur.git diff --git a/systemcommand.cpp b/systemcommand.cpp index 708724a..fb250d7 100644 --- a/systemcommand.cpp +++ b/systemcommand.cpp @@ -9,6 +9,39 @@ #include "systemcommand.h" +//********************************************************************************************************************** +vector SystemCommand::getValidParameters(){ + try { + vector myArray; + return myArray; + } + catch(exception& e) { + m->errorOut(e, "SystemCommand", "getValidParameters"); + exit(1); + } +} +//********************************************************************************************************************** +vector SystemCommand::getRequiredParameters(){ + try { + vector myArray; + return myArray; + } + catch(exception& e) { + m->errorOut(e, "SystemCommand", "getRequiredParameters"); + exit(1); + } +} +//********************************************************************************************************************** +vector SystemCommand::getRequiredFiles(){ + try { + vector myArray; + return myArray; + } + catch(exception& e) { + m->errorOut(e, "SystemCommand", "getRequiredFiles"); + exit(1); + } +} //********************************************************************************************************************** SystemCommand::SystemCommand(string option) {