getLine string LineStream::get_line(void); Description: Extracts and returns the next line (or partial line) of text available in the LineStream object. Once the line has been extracted, you may call has_newline() to determine whether or not there was an explicit newline character written following this line. |
hasNewline bool LineStream::has_newline(void) const; Description: Returns true if the line of text most recently returned by get_line() was written out with a terminating newline, or false if a newline character has not yet been written to the LineStream. |
isTextAvailable bool LineStream::is_text_available(void) const; Description: Returns true if there is at least one line of text (or even a partial line) available in the LineStream object. If this returns true, the line may then be retrieved via get_line(). |
flush void ostream::flush(void); Undocumented function. |
put void ostream::put(char c); Undocumented function. |