I've had multiple questions on the matter of streams and stuff, but after thinking for a bit, I've come to the conclusion that all I need is a custom flush type. I want my stream to flush when it gets a new line. It saves having to type out std::endl. Is it possible to implement this? I'm using an ostream with a custom stringbuf.
|
feedback
|
|
I believe all it would take is overriding
You might have to override every method and function that takes a character or sequence of characters that's defined in the STL. They would all basically do the same thing: call the method/function defined on the super class, check if a newline was just printed and flush if so. | |||||
feedback
|
endla few times more difficult that writing a new stream from (almost) scratch ? – Alexandre C. Dec 11 '10 at 16:36