]> git.donarmstrong.com Git - mothur.git/blobdiff - commandoptionparser.hpp
Revert to previous commit
[mothur.git] / commandoptionparser.hpp
diff --git a/commandoptionparser.hpp b/commandoptionparser.hpp
new file mode 100644 (file)
index 0000000..0c3a6f3
--- /dev/null
@@ -0,0 +1,22 @@
+#ifndef COMMANDOPTIONPARSER_HPP
+#define COMMANDOPTIONPARSER_HPP
+
+#include "mothur.h"
+#include "mothurout.h"
+
+//**********************************************************************************************************************
+
+class CommandOptionParser {
+public:
+       CommandOptionParser(string);
+       string getCommandString();
+       string getOptionString();
+       
+private:
+       string commandString, optionString;
+       MothurOut* m;
+};
+
+//**********************************************************************************************************************
+
+#endif