]> git.donarmstrong.com Git - mothur.git/blobdiff - getcommandinfocommand.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / getcommandinfocommand.h
diff --git a/getcommandinfocommand.h b/getcommandinfocommand.h
deleted file mode 100644 (file)
index 463c94c..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-#ifndef GETCOMMANDINFOCOMMAND_H
-#define GETCOMMANDINFOCOMMAND_H
-
-/*
- *  getcommandinfo.h
- *  Mothur
- *
- *  Created by westcott on 4/6/11.
- *  Copyright 2011 Schloss Lab. All rights reserved.
- *
- */
-
-
-
-#include "command.hpp"
-#include "commandfactory.hpp"
-
-/**********************************************************/
-
-class GetCommandInfoCommand : public Command {
-       
-public:
-       GetCommandInfoCommand(string);
-       GetCommandInfoCommand() { abort = true; calledHelp = true; setParameters(); }
-       ~GetCommandInfoCommand(){}
-       
-       vector<string> setParameters();
-       string getCommandName()                 { return "get.commandinfo";             }
-       string getCommandCategory()             { return "Hidden";                              }
-       string getHelpString(); 
-       string getCitation() { return "no citation"; }
-       string getDescription()         { return "get.commandinfo"; }
-       
-       
-       int execute(); 
-       void help() { m->mothurOut(getHelpString()); }  
-       
-private:
-       CommandFactory* commandFactory;
-       string output;
-       bool abort;
-       vector<string> outputNames;
-       
-       int getInfo(vector<CommandParameter>, vector<string>&, vector<string>&, vector<string>&, vector<string>&, vector<string>&, map<string, string>&);
-
-       
-       
-};
-
-/**********************************************************/
-
-#endif
-