]> git.donarmstrong.com Git - mothur.git/blob - quitcommand.h
broke up globaldata and moved error checking and help into commands
[mothur.git] / quitcommand.h
1 #ifndef QUITCOMMAND_H
2 #define QUITCOMMAND_H
3 /*
4  *  quitcommand.h
5  *  Dotur
6  *
7  *  Created by Sarah Westcott on 1/2/09.
8  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
9  *
10  */
11
12 #include "command.hpp"
13
14 /* The quit() command:
15         The quit command terminates the mothur program. 
16         The quit command should be in the following format: quit ().   */
17
18
19 class QuitCommand : public Command {
20         
21 public:
22         QuitCommand(string);
23         ~QuitCommand();
24         int execute();
25         void help();
26         
27 private:
28         bool abort;
29 };
30
31 #endif