]> git.donarmstrong.com Git - mothur.git/blobdiff - getcommandinfocommand.h
added getCommandInfoCommand for gui
[mothur.git] / getcommandinfocommand.h
diff --git a/getcommandinfocommand.h b/getcommandinfocommand.h
new file mode 100644 (file)
index 0000000..4c5b3ab
--- /dev/null
@@ -0,0 +1,50 @@
+#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(); 
+       
+       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
+