]> git.donarmstrong.com Git - mothur.git/blobdiff - engine.hpp
added sorted parameter to get.oturep, added error checking to chimera classes in...
[mothur.git] / engine.hpp
index 3aabf13de009dac3205d00c130d734d98de88dda..df4e08d879103c95e2959130eda2d19296f0a0f3 100644 (file)
@@ -22,12 +22,12 @@ class GlobalData;
 
 class Engine {
 public:
-       Engine() {  cFactory = new CommandFactory();    }
-       virtual ~Engine(){  delete cFactory;  }
+       Engine()
+       virtual ~Engine(){}
        virtual bool getInput() = 0;
        virtual string getCommand();
        vector<string> getOptions() {   return options;         }
-       virtual void terminateCommand(int);
+       //virtual void terminateCommand(int);
 protected:
        vector<string> options;
        CommandFactory* cFactory;