stringbuf::underflow [virtual] [protected]
int underflow ( );
stringbuf
  cplusplus.com  

Get current character.
  Returns the character at current get position or EOF (traits::eof) if the current get pointer is at the end of the file.

Parameters.

none
 

Return Value.
  The character available at the get position.
  EOF if the get pointer is at the end of the file.

Basic template member declaration ( basic_stringbuf<charT,traits,Allocator> ):
typedef traits::int_type int_type;
int_type underflow ( );

See also.
  overflow
  stringbuf class


© The C++ Resources Network, 2001