]> git.donarmstrong.com Git - mothur.git/blobdiff - validcommands.h
speed up rarefaction.shared
[mothur.git] / validcommands.h
index 19554979d087cf82dc25027e0e441b883424e305..e59316fca472b419734c0c1e65036b3d2b684b66 100644 (file)
@@ -11,9 +11,7 @@
  */
 using namespace std;
 
-#include <string>
-#include <iostream>
-#include <map>
+#include "mothur.h"
 
 //This class contains a list of all valid commands in Mothur.  
 //It has a function which will tell you if your command is valid.
@@ -25,8 +23,10 @@ class ValidCommands {
                ValidCommands();
                ~ValidCommands();
                bool isValidCommand(string);
+               void printCommands(ostream&);
        private:
                map<string, string> commands;
+               map<string, string>::iterator it;
 
 };