X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=nocommands.h;h=8c1d7222964a40de5cd06835260c2a5323238584;hp=f11673f98ce4e7c5c01f8c2aa624e85911f01fc7;hb=1a20e24ee786195ab0e1cccd4f5aede7a88f3f4e;hpb=8bc3e5b38c2317a1715f53be22fa96455868c281 diff --git a/nocommands.h b/nocommands.h index f11673f..8c1d722 100644 --- a/nocommands.h +++ b/nocommands.h @@ -19,17 +19,23 @@ class NoCommand : public Command { public: NoCommand(string); NoCommand() {} - ~NoCommand(); - vector getRequiredParameters(); - vector getValidParameters(); - vector getRequiredFiles(); - map > getOutputFiles() { return outputTypes; } - int execute(); - void help() {} + ~NoCommand(){} + + vector setParameters() { return outputNames; } //dummy, doesn't really do anything + string getCommandName() { return "NoCommand"; } + string getCommandCategory() { return "Hidden"; } + string getHelpString() { return "No Command"; } + string getOutputPattern(string) { return ""; } + string getCitation() { return "no citation"; } + string getDescription() { return "no description"; } + + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: vector outputNames; - map > outputTypes; };