]> git.donarmstrong.com Git - mothur.git/blobdiff - engine.hpp
added list parameter to get.seqs and remove.seqs and added readline library for inter...
[mothur.git] / engine.hpp
index d4ec3b65a5cdd428c44967ed66ea454d7bc5b2f8..3aabf13de009dac3205d00c130d734d98de88dda 100644 (file)
@@ -25,11 +25,10 @@ public:
        Engine() {  cFactory = new CommandFactory();    }
        virtual ~Engine(){  delete cFactory;  }
        virtual bool getInput() = 0;
-//     string getCommand()                     {       return command;         }
+       virtual string getCommand();
        vector<string> getOptions() {   return options;         }
        virtual void terminateCommand(int);
 protected:
-//     string command;
        vector<string> options;
        CommandFactory* cFactory;
 };
@@ -57,8 +56,6 @@ public:
        virtual bool getInput();
 private:
        GlobalData* globaldata;
-       vector<string> previousInputs; //this is used to make the arrow keys work
-       
 };