TextBuffer.h
TextBuffer
class TextBuffer { public: TextBuffer ( int maxBytes1 ); bool Init ( int maxBytes1 ); void Clear ( ); void Put ( ); int Read ( fstream& file ); int Unpack( char* str, char* str, char* str ); private: char* buffer; int bufferSize; int maxBytes; int nextByte; };