]> git.donarmstrong.com Git - mothur.git/blob - clearmemorycommand.h
added modify names parameter to set.dir
[mothur.git] / clearmemorycommand.h
1 #ifndef CLEARMEMORYCOMMAND_H
2 #define CLEARMEMORYCOMMAND_H
3
4 /*
5  *  clearmemorycommand.h
6  *  Mothur
7  *
8  *  Created by westcott on 7/6/11.
9  *  Copyright 2011 Schloss Lab. All rights reserved.
10  *
11  */
12
13 #include "command.hpp"
14
15 class ClearMemoryCommand : public Command {
16 public:
17         ClearMemoryCommand(string);
18         ClearMemoryCommand(){ abort = true; calledHelp = true; }
19         ~ClearMemoryCommand(){}
20         
21         vector<string> setParameters();
22         string getCommandName()                 { return "clear.memory";                        }
23         string getCommandCategory()             { return "General";     }
24         
25         string getHelpString(); 
26     string getOutputPattern(string) { return ""; }      
27         string getCitation() { return "http://www.mothur.org/wiki/Clear.memory"; }
28         string getDescription()         { return "remove saved references from memory"; }
29         
30         
31         int execute(); 
32         void help() { m->mothurOut(getHelpString()); }  
33         
34         
35 private:
36         bool abort;
37         vector<string> outputNames;
38 };
39
40 #endif
41