]> git.donarmstrong.com Git - mothur.git/blob - optionparser.h
merged pat's trim seqs edits with sarah's major overhaul of global data; also added...
[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(string);
23         ~OptionParser() {}
24         map<string, string> getParameters();
25 private:
26         map<string, string> parameters;
27 };
28
29 /***********************************************************************/
30
31 #endif