]> git.donarmstrong.com Git - mothur.git/blobdiff - engine.hpp
added hcluster command and fixed some bugs, namely one with smart distancing.
[mothur.git] / engine.hpp
index 276d29267a298dd7c2f52c9b550b3d9b37c555a0..603ff0a1c65fa528439b7a8f456991ae600c26ef 100644 (file)
 #include "commandoptionparser.hpp"
 #include "command.hpp"
 #include "commandfactory.hpp"
-#include "errorchecking.h"
-
-
-using namespace std;
 
 class GlobalData;
 
@@ -61,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