]> git.donarmstrong.com Git - mothur.git/blob - optionparser.h
7707e739ce15d7e0dd6657bc08a288222dfbdbb0
[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 #include "mothurout.h"
17
18
19 /***********************************************************************/
20
21 class OptionParser {
22 public:
23         OptionParser(string);
24         ~OptionParser() {}
25         map<string, string> getParameters();
26 private:
27         map<string, string> parameters;
28         MothurOut* m;
29 };
30
31 /***********************************************************************/
32
33 #endif