Dokumentation
outputstream.cc File Reference
#include "outputstream.h"
Include dependency graph for outputstream.cc:Functions | |
| OutputStream & | flush (OutputStream &os) |
| Enforces a buffer flush. | |
| OutputStream & | endl (OutputStream &os) |
| Prints a newline character to the stream and issues a buffer flush. | |
| OutputStream & | bin (OutputStream &os) |
| Print subsequent numbers in binary form. | |
| OutputStream & | oct (OutputStream &os) |
| Print subsequent numbers in octal form. | |
| OutputStream & | dec (OutputStream &os) |
| Print subsequent numbers in decimal form. | |
| OutputStream & | hex (OutputStream &os) |
| Print subsequent numbers in hex form. | |
Function Documentation
| OutputStream & flush | ( | OutputStream & | os | ) |
Enforces a buffer flush.
- Parameters
-
os Reference to stream to be flushed.
- Returns
- Reference to OutputStream os; allows operator chaining.
| OutputStream & endl | ( | OutputStream & | os | ) |
Prints a newline character to the stream and issues a buffer flush.
- Parameters
-
os Reference to stream to be modified.
- Returns
- Reference to OutputStream os; allows operator chaining.
| OutputStream & bin | ( | OutputStream & | os | ) |
Print subsequent numbers in binary form.
- Parameters
-
os Reference to stream to be modified.
- Returns
- Reference to OutputStream os; allows operator chaining.
| OutputStream & oct | ( | OutputStream & | os | ) |
Print subsequent numbers in octal form.
- Parameters
-
os Reference to stream to be modified.
- Returns
- Reference to OutputStream os; allows operator chaining.
| OutputStream & dec | ( | OutputStream & | os | ) |
Print subsequent numbers in decimal form.
- Parameters
-
os Reference to stream to be modified.
- Returns
- Reference to OutputStream os; allows operator chaining.
| OutputStream & hex | ( | OutputStream & | os | ) |
Print subsequent numbers in hex form.
- Parameters
-
os Reference to stream to be modified.
- Returns
- Reference to OutputStream os; allows operator chaining.