]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.hpp
version 1.4
[mothur.git] / commandfactory.hpp
index 9bbba573057e23c820e24a5c1d6d8c62e7fc5d5b..0cede38b05904dd9252f8987c8782f32f04cc297 100644 (file)
  *
  */
 
+#include "mothur.h"
+
 class Command;
 
 class CommandFactory {
 public:
        CommandFactory();
        ~CommandFactory();
-       Command* getCommand(string);
+       Command* getCommand(string, string);
+       bool isValidCommand(string);
+       void printCommands(ostream&);
+
 private:
        Command* command;
+       map<string, string> commands;
+       map<string, string>::iterator it;
+
+       
 
 };