On Jul 7, 6:21 pm, r...@zedat.fu-berlin.de (Stefan Ram) wrote:
That is as simple as -
std::ostream out(std::cout.r dbuf());
out << "state free formatted output";
Kind regards,
Vladimir
Possibly, you can create a new ostream object associated with
stdout and then use this with custom settings instead of cout.
stdout and then use this with custom settings instead of cout.
std::ostream out(std::cout.r dbuf());
out << "state free formatted output";
Kind regards,
Vladimir
Comment