]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.hpp
modified sequence class to read fasta files with comments. this required modification...
[mothur.git] / commandfactory.hpp
index e3eea41cd73e3583e57f5f2ce503233b54a02d55..55f70eaabf1440488c46679472dd86c36693b088 100644 (file)
@@ -19,8 +19,16 @@ public:
        CommandFactory();
        ~CommandFactory();
        Command* getCommand(string, string);
+       Command* getCommand();
+       bool isValidCommand(string);
+       void printCommands(ostream&);
+
 private:
        Command* command;
+       map<string, string> commands;
+       map<string, string>::iterator it;
+
+       
 
 };