]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.hpp
version 1.4
[mothur.git] / commandfactory.hpp
index f715b8488c626e1de22e46b6e624d04d599f76d1..0cede38b05904dd9252f8987c8782f32f04cc297 100644 (file)
@@ -18,9 +18,16 @@ 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;
+
+       
 
 };