X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=nocommands.cpp;fp=nocommands.cpp;h=eab873ba1eec6bc6a01b748f4ce6b441c9e1f4f1;hb=8bc3e5b38c2317a1715f53be22fa96455868c281;hp=1a01d3718f33fa02ee7f475323d704e135130fea;hpb=f663afa231c9bc1b5e18e0ea3bdd2b2ee784f5b2;p=mothur.git diff --git a/nocommands.cpp b/nocommands.cpp index 1a01d37..eab873b 100644 --- a/nocommands.cpp +++ b/nocommands.cpp @@ -9,6 +9,39 @@ #include "nocommands.h" +//********************************************************************************************************************** +vector NoCommand::getValidParameters(){ + try { + vector myArray; + return myArray; + } + catch(exception& e) { + m->errorOut(e, "NoCommand", "getValidParameters"); + exit(1); + } +} +//********************************************************************************************************************** +vector NoCommand::getRequiredParameters(){ + try { + vector myArray; + return myArray; + } + catch(exception& e) { + m->errorOut(e, "NoCommand", "getRequiredParameters"); + exit(1); + } +} +//********************************************************************************************************************** +vector NoCommand::getRequiredFiles(){ + try { + vector myArray; + return myArray; + } + catch(exception& e) { + m->errorOut(e, "NoCommand", "getRequiredFiles"); + exit(1); + } +} //********************************************************************************************************************** NoCommand::NoCommand(string option) {}