]> git.donarmstrong.com Git - mothur.git/blobdiff - helpcommand.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / helpcommand.h
diff --git a/helpcommand.h b/helpcommand.h
deleted file mode 100644 (file)
index cba0708..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-#ifndef HELPCOMMAND_H
-#define HELPCOMMAND_H
-/*
- *  helpcommand.h
- *  Dotur
- *
- *  Created by Sarah Westcott on 1/2/09.
- *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
- *
- */
-
-/* This class is designed to aid the user in running mothur. */
-
-#include "command.hpp"
-#include "commandfactory.hpp"
-
-class HelpCommand : public Command {
-       
-public:
-       HelpCommand(string);
-       HelpCommand() {}
-       ~HelpCommand(){}
-       
-       vector<string> setParameters()  { return outputNames;   } //dummy, doesn't really do anything   
-       string getCommandName()                 { return "help";                }
-       string getCommandCategory()             { return "Hidden";              }
-       string getHelpString() { return "For more information about a specific command type 'commandName(help)' i.e. 'cluster(help)'"; }        
-       string getCitation() { return "no citation"; }
-       string getDescription()         { return "help"; }
-
-       int execute(); 
-       void help() { m->mothurOut(getHelpString()); }  
-       
-       
-private:
-       CommandFactory* validCommands;
-       vector<string> outputNames;     
-               
-};
-#endif