]> git.donarmstrong.com Git - mothur.git/blobdiff - optionparser.h
changes while testing
[mothur.git] / optionparser.h
index b4d0dcb8691e103aa5c7259f3733d180e93cf29a..044299d43e51442aa673611003c00a80f557deaf 100644 (file)
 
 
 #include "mothur.h"
-
+#include "mothurout.h"
+#include "command.hpp"
 
 /***********************************************************************/
 
 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(string, map<string, string>&);
+       ~OptionParser() {}
+       map<string, string> getParameters();
+       bool getNameFile(vector<string>);
+private:
+       map<string, string> parameters;
+       MothurOut* m;
 };
 
 /***********************************************************************/