TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ overflow()

int LoggingOutputStreambuf::overflow ( int  ch)
protected

Definition at line 4 of file LogHandler.cpp.

5{
6 //myLogFile.sputc( ch ); // ignores errors...
7 myLogFile << (char)( ch ); // ignores errors...
8 return myDest->sputc( ch );
9}