X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=nocommands.h;h=f11673f98ce4e7c5c01f8c2aa624e85911f01fc7;hb=e99751591aa21705e58edda87383457b9738dd9e;hp=b529392a890483eeb61b5346f6a59ef91add7d9a;hpb=c25c956e4a3c7ca3271d48ee6215c72b2ec80c44;p=mothur.git diff --git a/nocommands.h b/nocommands.h index b529392..f11673f 100644 --- a/nocommands.h +++ b/nocommands.h @@ -12,15 +12,24 @@ /* This command is run if the user enters an invalid command. */ #include "command.hpp" +#include "commandfactory.hpp" class NoCommand : public Command { public: - NoCommand(); + NoCommand(string); + NoCommand() {} ~NoCommand(); + vector getRequiredParameters(); + vector getValidParameters(); + vector getRequiredFiles(); + map > getOutputFiles() { return outputTypes; } int execute(); + void help() {} private: + vector outputNames; + map > outputTypes; };