#include "InterpreterBase.h" #include "Constants.h" InterpreterBase::InterpreterBase() { } void InterpreterBase::ExecuteCommand(std::vector &commandLines) { } void InterpreterBase::LineDone(std::vector &commandLines) { PrevCommandLine = commandLines[0]; cmd += LINE_SPLITTER; cmd += commandLines[0]; commandLines.erase(commandLines.begin()); } void InterpreterBase::OnOutput(const std::string &text) { Output += (text); // Output.Append(Constants.LINE_SPLITTER); }