table of contents
        
      
      
    | std::basic_streambuf::pbase,std::basic_streambuf::pptr,(3) | C++ Standard Libary | std::basic_streambuf::pbase,std::basic_streambuf::pptr,(3) | 
NAME¶
std::basic_streambuf::pbase,std::basic_streambuf::pptr, - std::basic_streambuf::pbase,std::basic_streambuf::pptr,
Synopsis¶
 protected: (1)
  
   char_type* pbase() const;
  
   protected: (2)
  
   char_type* pptr() const;
  
   protected: (3)
  
   char_type* epptr() const;
  
   Returns pointers defining the put area.
  
   1) Returns the pointer to the beginning ("base") of the put
  area.
  
   2) Returns the pointer to the current character (put pointer) in the put
    area.
  
   3) Returns the pointer one past 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 one past the end of the put area.
Example¶
 This section is incomplete
  
   Reason: no example
See also¶
 eback returns a pointer to the beginning, current character and
    the end of the get
  
   gptr area
  
   egptr (protected member function)
Category:¶
* Todo no example
| 2024.06.10 | http://cppreference.com |