سؤال

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