]> git.donarmstrong.com Git - mothur.git/blob - setdircommand.h
modified the engine to extract the path of mothur executable if argv does not contain...
[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 #include "globaldata.hpp"
16
17 /**********************************************************/
18
19 class SetDirectoryCommand : public Command {
20         
21 public:
22         SetDirectoryCommand(string);
23         ~SetDirectoryCommand();
24         int execute();
25         void help();
26         
27 private:
28         CommandFactory* commandFactory;
29         string output, input, tempdefault;
30         bool abort;
31                 
32 };
33
34 /**********************************************************/
35  
36 #endif
37