]> git.donarmstrong.com Git - mothur.git/blobdiff - quitcommand.h
added pipeline commands which involved change to command factory and command class...
[mothur.git] / quitcommand.h
index 8b893064dc5fb243d4f63084242d4df346bd7587..f901b17083b54f059e2cb9eef6d020318c9d5cda 100644 (file)
@@ -20,12 +20,19 @@ class QuitCommand : public Command {
        
 public:
        QuitCommand(string);
+       QuitCommand() {}
        ~QuitCommand();
+       vector<string> getRequiredParameters();
+       vector<string> getValidParameters();
+       vector<string> getRequiredFiles();
+       map<string, vector<string> > getOutputFiles() { return outputTypes; }
        int execute();
        void help();
        
 private:
        bool abort;
+       vector<string> outputNames;
+       map<string, vector<string> > outputTypes;
 };
 
 #endif