X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=nocommands.h;h=5ed7e127d09ce645aa11cd43dd2192a1155b42dc;hb=2009a1a1f47e7467094d844e7c07ab8ddf7bb447;hp=5b84b65d5a518e77ea754d580e46fe9681db9ae1;hpb=de2dc9fb831f569b823031d0730f5a0d739e8290;p=mothur.git diff --git a/nocommands.h b/nocommands.h index 5b84b65..5ed7e12 100644 --- a/nocommands.h +++ b/nocommands.h @@ -18,11 +18,23 @@ 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 getCitation() { return "no citation"; } + string getDescription() { return "no description"; } + + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: + vector outputNames; };