]> git.donarmstrong.com Git - mothur.git/blob - validparameter.h
Initial revision
[mothur.git] / validparameter.h
1 /*
2  *  validparameter.h
3  *  Dotur
4  *
5  *  Created by Sarah Westcott on 1/5/09.
6  *  Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved.
7  *
8  */
9 using namespace std;
10
11 #include <Carbon/Carbon.h>
12 #include <iostream>
13 #include <string>
14 #include <map>
15
16 //This class contains a list of all valid parameters in Mothur.  
17 //It has a function which will tell you if your parameter is valid.
18 //When adding a new parameter you must add it to the valid list in the class constructor.
19
20
21 class ValidParameters {
22
23         public:
24                 ValidParameters();
25                 ~ValidParameters();
26                 bool isValidParameter(string);
27         private:
28                 map<string, string> parameters;
29
30 };