]> git.donarmstrong.com Git - mothur.git/blob - commandoptionparser.hpp
changing command name classify.shared to classifyrf.shared
[mothur.git] / commandoptionparser.hpp
1 #ifndef COMMANDOPTIONPARSER_HPP
2 #define COMMANDOPTIONPARSER_HPP
3
4 #include "mothur.h"
5 #include "mothurout.h"
6
7 //**********************************************************************************************************************
8
9 class CommandOptionParser {
10 public:
11         CommandOptionParser(string);
12         string getCommandString();
13         string getOptionString();
14         
15 private:
16         string commandString, optionString;
17         MothurOut* m;
18 };
19
20 //**********************************************************************************************************************
21
22 #endif