// $Id: Console.cc 4345 2005-05-04 18:40:42Z m9710797 $ #include "Console.hh" namespace openmsx { Console::Console() { } Console::~Console() { } void Console::setColumns(unsigned columns) { this->columns = columns; } unsigned Console::getColumns() const { return columns; } void Console::setRows(unsigned rows) { this->rows = rows; } unsigned Console::getRows() const { return rows; } } // namespace openmsx