X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=validparameter.h;fp=validparameter.h;h=d3fb2b7071fc79ab875ad3f696a4d8c90cf8fde7;hb=20a2d0350a737a434c89f303662d64a8eeea7b05;hp=0000000000000000000000000000000000000000;hpb=bbb5879a7e566935c23d63d42bb945072424b939;p=mothur.git diff --git a/validparameter.h b/validparameter.h new file mode 100644 index 0000000..d3fb2b7 --- /dev/null +++ b/validparameter.h @@ -0,0 +1,30 @@ +/* + * validparameter.h + * Dotur + * + * Created by Sarah Westcott on 1/5/09. + * Copyright 2009 Schloss Lab UMASS Amherst. All rights reserved. + * + */ +using namespace std; + +#include +#include +#include +#include + +//This class contains a list of all valid parameters in Mothur. +//It has a function which will tell you if your parameter is valid. +//When adding a new parameter you must add it to the valid list in the class constructor. + + +class ValidParameters { + + public: + ValidParameters(); + ~ValidParameters(); + bool isValidParameter(string); + private: + map parameters; + +}; \ No newline at end of file