]> git.donarmstrong.com Git - mothur.git/blobdiff - helpcommand.h
remove.rare command
[mothur.git] / helpcommand.h
index 4e68388d278c85b69a9a4fb7be9db6e19a4a1253..d4e7b1fda16a88f8e88a30a46ba70e50fe1ce290 100644 (file)
 /* This class is designed to aid the user in running mothur. */
 
 #include "command.hpp"
-#include "validcommands.h"
-
+#include "commandfactory.hpp"
 
 class HelpCommand : public Command {
        
 public:
        HelpCommand(string);
+       HelpCommand() {}
        ~HelpCommand();
+       vector<string> getRequiredParameters();
+       vector<string> getValidParameters();
+       vector<string> getRequiredFiles();
+       map<string, vector<string> > getOutputFiles() { return outputTypes; }
        int execute();
        void help() {};
        
 private:
-       ValidCommands* validCommands;
+       CommandFactory* validCommands;
+       vector<string> outputNames;
+       map<string, vector<string> > outputTypes;
+       
        
 private: