Pointer to end of input sequence
Returns a pointer just past the last element of the accessible part of the controlled input sequence.
The controlled input 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:
- eback: Beginning of accessible input sequence
- gptr: Current position in input sequence ("get pointer")
- egptr: End of accessible input sequence
Parameters
none
Return Value
A pointer to the element that would follow the last element of the accessible part of the
controlled input sequence.
Basic template member declaration
( basic_streambuf<charT,traits> )
typedef charT char_type;
char_type * egptr ( ) const;
|
See also
streambuf::eback | Pointer to beginning of input sequence (protected member function) |
streambuf::gptr | Pointer to current position of input sequence (protected member function) |