StuBS
|
#include "outputstream.h"
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. | |
OutputStream & flush | ( | OutputStream & | os | ) |
Enforces a buffer flush.
os | Reference to stream to be flushed. |
OutputStream & endl | ( | OutputStream & | os | ) |
Prints a newline character to the stream and issues a buffer flush.
os | Reference to stream to be modified. |
OutputStream & bin | ( | OutputStream & | os | ) |
Print subsequent numbers in binary form.
os | Reference to stream to be modified. |
OutputStream & oct | ( | OutputStream & | os | ) |
Print subsequent numbers in octal form.
os | Reference to stream to be modified. |
OutputStream & dec | ( | OutputStream & | os | ) |
Print subsequent numbers in decimal form.
os | Reference to stream to be modified. |
OutputStream & hex | ( | OutputStream & | os | ) |
Print subsequent numbers in hex form.
os | Reference to stream to be modified. |