X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=systemcommand.h;fp=systemcommand.h;h=892ac96268baeb2557c51cc67dd0fc571ea4dbfa;hb=ca9ac1d80c62f57270b0dcd49410ebe08a8aecd6;hp=55b772b71ddaa62767746d7543f61ae09a5b5e39;hpb=36a867cbd85d9c276d3c8d13f25a150bbbe2466b;p=mothur.git diff --git a/systemcommand.h b/systemcommand.h index 55b772b..892ac96 100644 --- a/systemcommand.h +++ b/systemcommand.h @@ -20,18 +20,20 @@ class SystemCommand : public Command { SystemCommand(string); SystemCommand() { abort = true; calledHelp = true; } ~SystemCommand(){} - vector getRequiredParameters(); - vector getValidParameters(); - vector getRequiredFiles(); - map > getOutputFiles() { return outputTypes; } - int execute(); - void help(); - + + vector setParameters() { return outputNames; } //dummy does not do anything + string getCommandName() { return "system"; } + string getCommandCategory() { return "General"; } + string getHelpString(); + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: string command; bool abort; vector outputNames; - map > outputTypes; + };