]> git.donarmstrong.com Git - mothur.git/blobdiff - helpcommand.h
remove.rare command
[mothur.git] / helpcommand.h
index 6d95d86293c8660d3d514ac5895d4b57dccd68d2..d4e7b1fda16a88f8e88a30a46ba70e50fe1ce290 100644 (file)
 /* This class is designed to aid the user in running mothur. */
 
 #include "command.hpp"
-#include "globaldata.hpp"
-
+#include "commandfactory.hpp"
 
 class HelpCommand : public Command {
        
 public:
-       HelpCommand();
+       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:
-       GlobalData* globaldata;
+       CommandFactory* validCommands;
+       vector<string> outputNames;
+       map<string, vector<string> > outputTypes;
+       
        
 private: