]> git.donarmstrong.com Git - mothur.git/blob - setlogfilecommand.h
added set.logfile command
[mothur.git] / setlogfilecommand.h
1 #ifndef SETLOGFILECOMMAND_H
2 #define SETLOGFILECOMMAND_H
3
4 /*
5  *  setlogfilecommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 4/27/10.
9  *  Copyright 2010 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14 #include "commandfactory.hpp"
15
16 /**********************************************************/
17
18 class SetLogFileCommand : public Command {
19         
20 public:
21         SetLogFileCommand(string);
22         ~SetLogFileCommand();
23         int execute();
24         void help();
25         
26 private:
27         CommandFactory* commandFactory;
28         string name;
29         bool abort, append;
30                 
31 };
32
33 /**********************************************************/
34  
35 #endif
36
37