]> git.donarmstrong.com Git - mothur.git/blobdiff - validcommands.h
Added get.line command.
[mothur.git] / validcommands.h
index 658d5e4fccbc6455d7f3a8e6b247baab2ed5295b..1b83b9bf4bab5060e35839b254bb59d45b3ef39e 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef VALIDCOMMANDS_H
+#define VALIDCOMMANDS_H
+
 /*
  *  validcommands.h
  *  Dotur
@@ -8,7 +11,6 @@
  */
 using namespace std;
 
-#include <Carbon/Carbon.h>
 #include <string>
 #include <iostream>
 #include <map>
@@ -23,7 +25,11 @@ class ValidCommands {
                ValidCommands();
                ~ValidCommands();
                bool isValidCommand(string);
+               void printCommands(ostream&);
        private:
                map<string, string> commands;
+               map<string, string>::iterator it;
+
+};
 
-};
\ No newline at end of file
+#endif