]> git.donarmstrong.com Git - mothur.git/blobdiff - engine.hpp
fixed bug in libshuff
[mothur.git] / engine.hpp
index d42406e46022bfa717e288ecf9fa05df2a3a8185..603ff0a1c65fa528439b7a8f456991ae600c26ef 100644 (file)
@@ -17,7 +17,6 @@
 #include "commandoptionparser.hpp"
 #include "command.hpp"
 #include "commandfactory.hpp"
-#include "errorchecking.h"
 
 class GlobalData;
 
@@ -58,4 +57,18 @@ private:
 };
 
 
+class ScriptEngine : public Engine {
+public:
+       ScriptEngine(string, string);
+       ~ScriptEngine();
+       virtual bool getInput();
+       int openedBatch;
+private:
+       GlobalData* globaldata;
+       string listOfCommands;
+       string getNextCommand(string&);
+
+};
+
+
 #endif