* Flushes this stream's buffer, if any. * * Note that this can also be done with a `Flush` manipulator: * @code * stream << "some string" << Flush; * @endcode */
| 117 | * @endcode |
| 118 | */ |
| 119 | inline void Flush() { |
| 120 | DoFlush(); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Flushes and closes this stream. No more data can be written into a stream |