문제

Currently I create an ostream with a custom stringbuf derived object, but it uses sync() to print text on the screen. Is there a way to avoid having to flush it? I really want to do logStream << "Test"; without std::flush or endl.

도움이 되었습니까?

해결책

See my answer to this related question: Custom stream to method in C++?

All you really need to change is to add the flush instead of the function call and your stream instead of the stringstream.

Edit: Just saw that was your question. The answer still works though.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top