]> git.donarmstrong.com Git - mothur.git/blob - commandoptionparser.hpp
broke up globaldata and moved error checking and help into commands
[mothur.git] / commandoptionparser.hpp
1 #ifndef COMMANDOPTIONPARSER_HPP
2 #define COMMANDOPTIONPARSER_HPP
3
4 #include "mothur.h"
5
6 //**********************************************************************************************************************
7
8 class CommandOptionParser {
9 public:
10         CommandOptionParser(string);
11         string getCommandString();
12         string getOptionString();
13         
14 private:
15         string commandString, optionString;
16 };
17
18 //**********************************************************************************************************************
19
20 #endif