// $Id: InterpreterOutput.hh 5771 2006-10-12 12:24:23Z m9710797 $ #ifndef INTERPRETEROUTPUT_HH #define INTERPRETEROUTPUT_HH #include namespace openmsx { class InterpreterOutput { public: virtual ~InterpreterOutput() {} virtual void output(const std::string& text) = 0; virtual unsigned getOutputColumns() const = 0; }; } // namespace openmsx #endif