]> git.donarmstrong.com Git - mothur.git/blobdiff - quitcommand.h
fixed trim.seqs weird characters thing
[mothur.git] / quitcommand.h
index c54e7f27abfaafcc791b6c0895209a6c7a96393d..f901b17083b54f059e2cb9eef6d020318c9d5cda 100644 (file)
@@ -9,7 +9,6 @@
  *
  */
 
-#include <Carbon/Carbon.h>
 #include "command.hpp"
 
 /* The quit() command:
 class QuitCommand : public Command {
        
 public:
-       QuitCommand();
+       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
\ No newline at end of file
+
+#endif