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