Constructor.h
TextBuffer
TextBuffer( )
Init( )
TextBuffer::TextBuffer( int maxBytes1 ) { Init( maxBytes1 ); } bool TextBuffer::Init( int maxBytes1 ) { if ( maxBytes1 < 0 ) maxBytes1 = 0; maxBytes = maxBytes1; nextByte = 0; buffer = new char[maxBytes]; bufferSize = 0; return( true ); }