X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=setdircommand.h;fp=setdircommand.h;h=0000000000000000000000000000000000000000;hb=4a877efa127e56e81a21f53cfdbbfd3bfbe8c4ff;hp=b3b00c46c65b65f1c7f243221ceb4e814a37dbc5;hpb=a6cf29fa4dac0909c7582cb1094151d34093ee76;p=mothur.git diff --git a/setdircommand.h b/setdircommand.h deleted file mode 100644 index b3b00c4..0000000 --- a/setdircommand.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef SETDIRCOMMAND_H -#define SETDIRCOMMAND_H - -/* - * setoutdircommand.h - * Mothur - * - * Created by westcott on 1/21/10. - * Copyright 2010 Schloss Lab. All rights reserved. - * - */ - -#include "command.hpp" -#include "commandfactory.hpp" - -/**********************************************************/ - -class SetDirectoryCommand : public Command { - -public: - SetDirectoryCommand(string); - SetDirectoryCommand() { abort = true; calledHelp = true; setParameters(); } - ~SetDirectoryCommand(){} - - vector setParameters(); - string getCommandName() { return "set.dir"; } - string getCommandCategory() { return "General"; } - string getHelpString(); - string getCitation() { return "http://www.mothur.org/wiki/Set.dir"; } - string getDescription() { return "set input, output and default directories"; } - - int execute(); - void help() { m->mothurOut(getHelpString()); } - -private: - CommandFactory* commandFactory; - string output, input, tempdefault; - bool abort; - vector outputNames; - - -}; - -/**********************************************************/ - -#endif -