X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=clearmemorycommand.h;fp=clearmemorycommand.h;h=901756164ff2cee9fc04561050ba3fdb8d188168;hb=0caf3fbabaa3ece404f8ce77f4c883dc5b1bf1dc;hp=0000000000000000000000000000000000000000;hpb=1b73ff67c83892a025e597dabd9df6fe7b58206a;p=mothur.git diff --git a/clearmemorycommand.h b/clearmemorycommand.h new file mode 100644 index 0000000..9017561 --- /dev/null +++ b/clearmemorycommand.h @@ -0,0 +1,39 @@ +#ifndef CLEARMEMORYCOMMAND_H +#define CLEARMEMORYCOMMAND_H + +/* + * clearmemorycommand.h + * Mothur + * + * Created by westcott on 7/6/11. + * Copyright 2011 Schloss Lab. All rights reserved. + * + */ + +#include "command.hpp" + +class ClearMemoryCommand : public Command { +public: + ClearMemoryCommand(string); + ClearMemoryCommand(){ abort = true; calledHelp = true; } + ~ClearMemoryCommand(){} + + vector setParameters(); + string getCommandName() { return "clear.memory"; } + string getCommandCategory() { return "General"; } + string getHelpString(); + string getCitation() { return "http://www.mothur.org/wiki/Clear.memory"; } + string getDescription() { return "remove saved references from memory"; } + + + int execute(); + void help() { m->mothurOut(getHelpString()); } + + +private: + bool abort; + vector outputNames; +}; + +#endif +