streambuf::setp [protected]
void setp ( char* pbeg, char* pnext, char* pend );
streambuf
  cplusplus.com  

Set output buffer pointers.
  Sets the values that define the output sequence's boundaries and put pointer.

Parameters.

pbeg
New value for the pointer to the beginning of the output sequence.
pnext
New value for the pointer to the next element within the output sequence where next output operation shall be performed.
pend
New value for the end pointer, just past the end of the output sequence.

Return Value.
  none

Basic template member declaration ( basic_streambuf<charT,traits> ):
typedef charT char_type;
void pbump ( char_type* pbeg, char_type* pnext, char_type* pend );

See also.
  pbump, pbase, epptr, pptr
  streambuf class


© The C++ Resources Network, 2001