]> git.donarmstrong.com Git - mothur.git/blobdiff - validparameter.h
parsimony fix
[mothur.git] / validparameter.h
index d3fb2b7071fc79ab875ad3f696a4d8c90cf8fde7..c03c034f41b6308b4945753147abda65cddf48d7 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef VALIDPARAMETERS_H
+#define VALIDPARAMETERS_H
+
 /*
  *  validparameter.h
  *  Dotur
@@ -8,10 +11,7 @@
  */
 using namespace std;
 
-#include <Carbon/Carbon.h>
-#include <iostream>
-#include <string>
-#include <map>
+#include "mothur.h"
 
 //This class contains a list of all valid parameters in Mothur.  
 //It has a function which will tell you if your parameter is valid.
@@ -26,5 +26,8 @@ class ValidParameters {
                bool isValidParameter(string);
        private:
                map<string, string> parameters;
+               map<string, string>::iterator it;
+
+};
 
-};
\ No newline at end of file
+#endif