]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.hpp
removed validcommands and put its checking in commandfactory.
[mothur.git] / commandfactory.hpp
index e3eea41cd73e3583e57f5f2ce503233b54a02d55..0cede38b05904dd9252f8987c8782f32f04cc297 100644 (file)
@@ -19,8 +19,15 @@ public:
        CommandFactory();
        ~CommandFactory();
        Command* getCommand(string, string);
+       bool isValidCommand(string);
+       void printCommands(ostream&);
+
 private:
        Command* command;
+       map<string, string> commands;
+       map<string, string>::iterator it;
+
+       
 
 };