destructor for class Console

This commit is contained in:
Wolfgang Thaller 2012-04-08 14:45:54 +02:00
parent b435fbeb7e
commit 707f1a0d07
2 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,9 @@ Console::Console(GrafPtr port, Rect r)
currentInstance = this;
}
Console::~Console()
{
}
Rect Console::CellRect(short x, short y)
{

View File

@ -6,6 +6,7 @@ class Console
{
public:
Console(GrafPtr port, Rect r);
~Console();
void Draw();
void putch(char c);
std::string ReadLine();