LineStream
from panda3d.core import LineStream
- class LineStream
Bases:
ostream
This is a special ostream that writes to a memory buffer, like ostrstream. However, its contents can be continuously extracted as a sequence of lines of text.
Unlike ostrstream, which can only be extracted from once (and then the buffer freezes and it can no longer be written to), the LineStream is not otherwise affected when a line of text is extracted. More text can still be written to it and continuously extracted.
Inheritance diagram
- __init__(*args, **kwargs)
- getLine()
C++ Interface: get_line(const LineStream self)
- /**
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.
*/
- get_line()
C++ Interface: get_line(const LineStream self)
- /**
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()
C++ Interface: has_newline(LineStream self)
- /**
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.
*/
- has_newline()
C++ Interface: has_newline(LineStream self)
- /**
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.
*/