]> git.donarmstrong.com Git - mothur.git/blob - setdircommand.h
added tempdefault to set.dir and fixed bug with padding type in sffinfo.
[mothur.git] / setdircommand.h
1 #ifndef SETDIRCOMMAND_H
2 #define SETDIRCOMMAND_H
3
4 /*
5  *  setoutdircommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 1/21/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 SetDirectoryCommand : public Command {
19         
20 public:
21         SetDirectoryCommand(string);
22         ~SetDirectoryCommand();
23         int execute();
24         void help();
25         
26 private:
27         CommandFactory* commandFactory;
28         string output, input, tempdefault;
29         bool abort;
30                 
31 };
32
33 /**********************************************************/
34  
35 #endif
36