]> git.donarmstrong.com Git - mothur.git/blobdiff - nocommands.h
fixed craig nelsons weighted bug and paralellized parsimony
[mothur.git] / nocommands.h
index 2da23d931a1577fb25e93928a6720dffce60fbc9..f11673f98ce4e7c5c01f8c2aa624e85911f01fc7 100644 (file)
 /* This command is run if the user enters an invalid command. */
 
 #include "command.hpp"
+#include "commandfactory.hpp"
 
 class NoCommand : public Command {
 
 public:
        NoCommand(string);
+       NoCommand() {}
        ~NoCommand();
+       vector<string> getRequiredParameters();
+       vector<string> getValidParameters();
+       vector<string> getRequiredFiles();
+       map<string, vector<string> > getOutputFiles() { return outputTypes; }
        int execute();
        void help() {}
        
 private:
+       vector<string> outputNames;
+       map<string, vector<string> > outputTypes;
                
 };