]> git.donarmstrong.com Git - mothur.git/blob - getcurrentcommand.h
added citation function to commands
[mothur.git] / getcurrentcommand.h
1 #ifndef GETCURRENTCOMMAND_H
2 #define GETCURRENTCOMMAND_H
3
4 /*
5  *  getcurrentcommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 3/16/11.
9  *  Copyright 2011 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14
15 class GetCurrentCommand : public Command {
16
17         public:
18                 GetCurrentCommand(string);
19                 GetCurrentCommand();
20                 ~GetCurrentCommand() {}
21         
22                 vector<string> setParameters();
23                 string getCommandName()                 { return "get.current"; }
24                 string getCommandCategory()             { return "General";             }
25                 string getHelpString(); 
26                 string getCitation() { return "http://www.mothur.org/wiki/Get.current"; }
27         
28                 int execute(); 
29                 void help() { m->mothurOut(getHelpString()); }  
30         
31         
32         private:
33                 
34                 vector<string> outputNames;
35                 bool abort;
36         
37                 string clearTypes;
38                 vector<string> types;
39                 
40 };
41
42 #endif
43