]> git.donarmstrong.com Git - mothur.git/blobdiff - optionparser.h
added deunique.tree command
[mothur.git] / optionparser.h
index b4d0dcb8691e103aa5c7259f3733d180e93cf29a..7707e739ce15d7e0dd6657bc08a288222dfbdbb0 100644 (file)
 
 
 #include "mothur.h"
+#include "mothurout.h"
 
 
 /***********************************************************************/
 
 class OptionParser {
-       public:
-               OptionParser() {}
-               ~OptionParser() {}
-               void parse(string, map<string, string>&);  //pass it an option string and a container
-                                                                                         //fills the container key=parameter name, value=parameter value
+public:
+       OptionParser(string);
+       ~OptionParser() {}
+       map<string, string> getParameters();
+private:
+       map<string, string> parameters;
+       MothurOut* m;
 };
 
 /***********************************************************************/