std::basic_streambuf::pbase

char_type* pbase() const;
(1)
char_type* pptr() const;
(2)
char_type* epptr() const;
(3)

Returns pointers defining the put area.

1) Returns the pointer to the beginning of the put area.

2) Returns the pointer to the current character (put pointer) in the put area.

3) Returns the pointer to the end of the put area.

Parameters

(none).

Return value

1) The pointer to the beginning of the put area.

2) The pointer to the current character (put pointer) in the put area.

3) The pointer to the end of the put area.

Example

See also

returns a pointer to the beginning, current character and the end of the get area
(protected member function)
doc_CPP
2016-10-11 10:01:12
Comments
Leave a Comment

Please login to continue.