]> git.donarmstrong.com Git - mothur.git/blob - optionparser.h
b4d0dcb8691e103aa5c7259f3733d180e93cf29a
[mothur.git] / optionparser.h
1 #ifndef OPTIONPARSER_H
2 #define OPTIONPARSER_H
3
4 /*
5  *  optionparser.h
6  *  Mothur
7  *
8  *  Created by Sarah Westcott on 6/8/09.
9  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
10  *
11  */
12
13
14
15 #include "mothur.h"
16
17
18 /***********************************************************************/
19
20 class OptionParser {
21         public:
22                 OptionParser() {}
23                 ~OptionParser() {}
24                 void parse(string, map<string, string>&);  //pass it an option string and a container
25                                                                                           //fills the container key=parameter name, value=parameter value
26 };
27
28 /***********************************************************************/
29
30 #endif