]> git.donarmstrong.com Git - mothur.git/blobdiff - helpcommand.h
fixed cluster.classic and added weighted method to hcluster
[mothur.git] / helpcommand.h
index 4ea46280c64f3b527b9b58173e9ff00ceaf4a6e9..d4e7b1fda16a88f8e88a30a46ba70e50fe1ce290 100644 (file)
 
 /* This class is designed to aid the user in running mothur. */
 
-#include <Carbon/Carbon.h>
 #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:
                
 };
  
-#endif
\ No newline at end of file
+#endif