Removed obsolete operator<<(string) method

pull/22/head
cjlaurel 2001-02-28 01:00:36 +00:00
parent b4570069e2
commit be5d4a8dcc
1 changed files with 0 additions and 12 deletions

View File

@ -47,18 +47,6 @@ Console::~Console()
}
#if 0
Console& Console::operator<<(string s)
{
int len = s.length();
for (int i = 0; i < len; i++)
print(s[i]);
return *this;
}
#endif
void Console::setFont(TexFont* _font)
{
font = _font;