X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=nocommands.h;h=8c1d7222964a40de5cd06835260c2a5323238584;hp=5b84b65d5a518e77ea754d580e46fe9681db9ae1;hb=1a20e24ee786195ab0e1cccd4f5aede7a88f3f4e;hpb=de2dc9fb831f569b823031d0730f5a0d739e8290 diff --git a/nocommands.h b/nocommands.h index 5b84b65..8c1d722 100644 --- a/nocommands.h +++ b/nocommands.h @@ -18,11 +18,24 @@ class NoCommand : public Command { public: NoCommand(string); - ~NoCommand(); - int execute(); - void help() {} + NoCommand() {} + ~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; };