]> git.donarmstrong.com Git - mothur.git/blobdiff - commandfactory.hpp
added warning about merging with something above cutoff to cluster. working on chimeras
[mothur.git] / commandfactory.hpp
index f715b8488c626e1de22e46b6e624d04d599f76d1..d84be62a074dde5dc29b8006a636bd7b67b9607d 100644 (file)
@@ -16,11 +16,26 @@ class Command;
 
 class CommandFactory {
 public:
-       CommandFactory();
-       ~CommandFactory();
-       Command* getCommand(string);
+       static CommandFactory* getInstance();
+       Command* getCommand(string, string);
+       Command* getCommand();
+       bool isValidCommand(string);
+       void printCommands(ostream&);
+       void setOutputDirectory(string o)       {       outputDir = o;          }
+       void setInputDirectory(string i)        {       inputDir = i;           }
+       string getOutputDir()                           {       return outputDir;       }
+
 private:
        Command* command;
+       map<string, string> commands;
+       map<string, string>::iterator it;
+       string outputDir, inputDir;
+       
+       static CommandFactory* _uniqueInstance;
+       CommandFactory( const CommandFactory& ); // Disable copy constructor
+       void operator=( const CommandFactory& ); // Disable assignment operator
+       CommandFactory();
+       ~CommandFactory();
 
 };