protected member function
Pointer to current position of output sequence
Returns a reference to the current element of the output sequence (the put pointer).
The controlled output sequence is directly available (either in part or in its entirety) for other members of the class through three pointers returned by the following protected member functions:
- pbase: Beginning of accessible output sequence
- pptr: Current position in output sequence ("put pointer")
- epptr: End of accessible output sequence
Parameters
none
Return Value
A reference to the current element in the output sequence.
Basic template member declaration
( basic_streambuf<charT,traits> )
1 2
|
typedef charT char_type;
char_type *pptr ( ) const;
|
See also
streambuf::pbase | Pointer to beginning of output sequence (protected member function) |
streambuf::gptr | Pointer to current position of input sequence (protected member function) |
|